Ver código fonte

🔨 Try out v3 actions

Scott Lahteine 2 anos atrás
pai
commit
959c559c43
1 arquivos alterados com 4 adições e 4 exclusões
  1. 4
    4
      .github/workflows/test-builds.yml

+ 4
- 4
.github/workflows/test-builds.yml Ver arquivo

113
     steps:
113
     steps:
114
 
114
 
115
     - name: Check out the PR
115
     - name: Check out the PR
116
-      uses: actions/checkout@v2
116
+      uses: actions/checkout@v3
117
 
117
 
118
     - name: Cache pip
118
     - name: Cache pip
119
-      uses: actions/cache@v2
119
+      uses: actions/cache@v3
120
       with:
120
       with:
121
         path: ~/.cache/pip
121
         path: ~/.cache/pip
122
         key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
122
         key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
124
           ${{ runner.os }}-pip-
124
           ${{ runner.os }}-pip-
125
 
125
 
126
     - name: Cache PlatformIO
126
     - name: Cache PlatformIO
127
-      uses: actions/cache@v2
127
+      uses: actions/cache@v3
128
       with:
128
       with:
129
         path: ~/.platformio
129
         path: ~/.platformio
130
         key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
130
         key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
131
 
131
 
132
     - name: Select Python 3.7
132
     - name: Select Python 3.7
133
-      uses: actions/setup-python@v2
133
+      uses: actions/setup-python@v3
134
       with:
134
       with:
135
         python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
135
         python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
136
         architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
136
         architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

Carregando…
Cancelar
Salvar