8000 Update all GitHub actions, remove deprecation warn (#1978) · BritvaBo/arduino-pico@9c66d97 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9c66d97

Browse files
Update all GitHub actions, remove deprecation warn (earlephilhower#1978)
1 parent 7f5756c commit 9c66d97

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.github/workflows/pull-request.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
name: Check spelling
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v3
21+
- uses: actions/checkout@v4
2222
with:
2323
submodules: true
2424
- name: Run codespell
@@ -32,7 +32,7 @@ jobs:
3232
name: Style, Boards, Package
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636
with:
3737
submodules: false
3838
- name: Check package references
@@ -59,15 +59,15 @@ jobs:
5959
matrix:
6060
chunk: [0, 1, 2, 3, 4, 5]
6161
steps:
62-
- uses: actions/checkout@v3
62+
- uses: actions/checkout@v4
6363
with:
6464
submodules: true
65-
- uses: actions/setup-python@v4
65+
- uses: actions/setup-python@v5
6666
with:
6767
python-version: '3.x'
6868
- name: Cache Linux toolchain
6969
id: cache-linux
70-
uses: actions/cache@v3
70+
uses: actions/cache@v4
7171
with:
7272
path: ./tools/dist
7373
key: ${{ runner.os }}-${{ hashFiles('package/package_pico_index.template.json', 'tests/common.sh') }}
@@ -87,15 +87,15 @@ jobs:
8787
name: Build TinyUSB Examples
8888
runs-on: ubuntu-latest
8989
steps:
90-
- uses: actions/checkout@v3
90+
- uses: actions/checkout@v4
9191
with:
9292
submodules: true
93-
- uses: actions/setup-python@v4
93+
- uses: actions/setup-python@v5
9494
with:
9595
python-version: '3.x'
9696
- name: Cache Linux toolchain
9797
id: cache-linux
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: ./tools/dist
101101
key: ${{ runner.os }}-${{ hashFiles('package/package_pico_index.template.json', 'tests/common.sh') }}
@@ -113,15 +113,15 @@ jobs:
113113
name: Windows
114114
runs-on: windows-latest
115115
steps:
116-
- uses: actions/checkout@v3
116+
- uses: actions/checkout@v4
117117
with:
118118
submodules: true
119-
- uses: actions/setup-python@v4
119+
- uses: actions/setup-python@v5
120120
with:
121121
python-version: '3.x'
122122
- name: Cache Windows toolchain
123123
id: cache-windows
124-
uses: actions/cache@v3
124+
uses: actions/cache@v4
125125
with:
126126
path: ./tools/dist
127127
key: ${{ runner.os }}-${{ hashFiles('package/package_pico_index.template.json', 'tests/common.sh') }}
@@ -149,15 +149,15 @@ jobs:
149149
os: [macOS-12, macOS-14]
150150
runs-on: ${{ matrix.os }}
151151
steps:
152-
- uses: actions/checkout@v3
152+
- uses: actions/checkout@v4
153153
with:
154154
submodules: true
155-
- uses: actions/setup-python@v4
155+
- uses: actions/setup-python@v5
156156
with:
157157
python-version: '3.x'
158158
- name: Cache Mac toolchain
159159
id: cache-mac
160-
uses: actions/cache@v3
160+
uses: actions/cache@v4
161161
with:
162162
path: ./tools/dist
163163
key: ${{ runner.os }}-${{ hashFiles('package/package_pico_index.template.json', 'tests/common.sh') }}
@@ -179,7 +179,7 @@ jobs:
179179
name: Build PlatformIO Examples
180180
runs-on: ubuntu-latest
181181
steps:
182-
- uses: actions/checkout@v3
182+
- uses: actions/checkout@v4
183183
with:
184184
submodules: 'true'
185185
- name: Initialize needed submodules
@@ -190,19 +190,19 @@ jobs:
190190
git submodule update --init
191191
cd ../..
192192
- name: Cache pip
193-
uses: actions/cache@v3
193+
uses: actions/cache@v4
194194
with:
195195
path: ~/.cache/pip
196196
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
197197
restore-keys: |
198198
${{ runner.os }}-pip-
199199
- name: Cache PlatformIO
200-
uses: actions/cache@v3
200+
uses: actions/cache@v4
201201
with:
202202
path: ~/.platformio
203203
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
204204
- name: Set up Python
205-
uses: actions/setup-python@v4
205+
uses: actions/setup-python@v5
206206
with:
207207
python-version: '3.x'
208208
- name: Install PlatformIO

0 commit comments

Comments
 (0)
0