Skip to content

Commit 601c31b

Browse files
committed
[CI] Update actions/OS dependencies
1 parent f1d5868 commit 601c31b

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/autoreview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ on: [pull_request]
33

44
jobs:
55
misspellcheck:
6-
runs-on: ubuntu-20.04
6+
runs-on: ubuntu-22.04
77
steps:
8-
- uses: actions/checkout@v2
8+
- uses: actions/checkout@v3
99
- name: Run misspell with reviewdog
1010
uses: reviewdog/action-misspell@v1
1111
#with:

.github/workflows/test.arduino-compile-examples.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ env:
1010
jobs:
1111
compile:
1212
name: ${{ matrix.board.fqbn }}
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-22.04
1414
timeout-minutes: 20
1515
strategy:
1616
fail-fast: false
@@ -37,7 +37,7 @@ jobs:
3737
version: 2.5.1
3838
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- name: Compiles every example with Arduino IDE.
4242
uses: arduino/compile-sketches@v1
4343
with:
@@ -46,7 +46,7 @@ jobs:
4646
enable-warnings-report: true
4747
# This step is needed to pass the size data to the report job.
4848
- name: Upload sketches report to workflow artifact.
49-
uses: actions/upload-artifact@v2
49+
uses: actions/upload-artifact@v3
5050
with:
5151
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
5252
path: ${{ env.SKETCHES_REPORTS_PATH }}
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
# This step is needed to get the size data produced by the compile jobs.
6161
- name: Download sketches reports artifact
62-
uses: actions/download-artifact@v2
62+
uses: actions/download-artifact@v3
6363
with:
6464
name: ${{ env.SKETCHES_REPORTS_ARTIFACT_NAME }}
6565
path: ${{ env.SKETCHES_REPORTS_PATH }}

.github/workflows/test.arduino-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on: [push, pull_request]
55

66
jobs:
77
arduino-lint:
8-
runs-on: ubuntu-20.04
8+
runs-on: ubuntu-22.04
99
timeout-minutes: 20
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
- name: Run arduino library lint.
1313
uses: arduino/arduino-lint-action@v1
1414
with:

0 commit comments

Comments
 (0)