Skip to content

Commit 959c559

Browse files
committed
🔨 Try out v3 actions
1 parent f1471c1 commit 959c559

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/test-builds.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,24 +113,24 @@ jobs:
113113
steps:
114114

115115
- name: Check out the PR
116-
uses: actions/checkout@v2
116+
uses: actions/checkout@v3
117117

118118
- name: Cache pip
119-
uses: actions/cache@v2
119+
uses: actions/cache@v3
120120
with:
121121
path: ~/.cache/pip
122122
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
123123
restore-keys: |
124124
${{ runner.os }}-pip-
125125
126126
- name: Cache PlatformIO
127-
uses: actions/cache@v2
127+
uses: actions/cache@v3
128128
with:
129129
path: ~/.platformio
130130
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
131131

132132
- name: Select Python 3.7
133-
uses: actions/setup-python@v2
133+
uses: actions/setup-python@v3
134134
with:
135135
python-version: '3.7' # Version range or exact version of a Python version to use, using semvers version range syntax.
136136
architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified

0 commit comments

Comments
 (0)