Skip to content

Commit d5d50a0

Browse files
bors[bot]newAM
andauthored
Merge #435
435: ci: update github-actions r=adamgreig a=newAM * actions/checkout 2 -> 3 * actions/download-artifact 2 -> 3 * actions/upload-artifact 2 -> 3 * imjonbo/issue-bot 2 -> 3 This fixes on-target CI. The self-hosted runner updated and removed node v12, because it is EOL and no longer receiving security updates. * `actions` changes do not break anything, they just update node. * `issue-bot` has breaking changes, but I do not think they apply: [release notes](https://github.com/imjohnbo/issue-bot/releases/tag/v3.0.0) Co-authored-by: Alex Martens <[email protected]>
2 parents 6c28c81 + f8c6633 commit d5d50a0

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- rust: nightly
2323
experimental: true
2424
steps:
25-
- uses: actions/checkout@v2
25+
- uses: actions/checkout@v3
2626
- uses: actions-rs/toolchain@v1
2727
with:
2828
profile: minimal

.github/workflows/clippy.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ jobs:
88
clippy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3
1212
if: github.event_name == 'pull_request_target'
1313
with:
1414
ref: refs/pull/${{ github.event.number }}/head
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
if: github.event_name != 'pull_request_target'
1717
- uses: actions-rs/toolchain@v1
1818
with:

.github/workflows/cron.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ jobs:
99
ci-linux:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v3
1313
- uses: actions-rs/toolchain@v1
1414
with:
1515
profile: minimal
1616
toolchain: stable
1717
override: true
1818
- name: Run tests
1919
run: cargo test --all --exclude cortex-m-rt --exclude testsuite
20-
- uses: imjohnbo/issue-bot@v2
20+
- uses: imjohnbo/issue-bot@v3
2121
if: failure()
2222
with:
2323
title: CI Failure
@@ -36,7 +36,7 @@ jobs:
3636
run:
3737
working-directory: cortex-m-rt
3838
steps:
39-
- uses: actions/checkout@v2
39+
- uses: actions/checkout@v3
4040
- uses: actions-rs/toolchain@v1
4141
with:
4242
profile: minimal
@@ -62,7 +62,7 @@ jobs:
6262
run: TARGET=thumbv8m.main-none-eabi TRAVIS_RUST_VERSION=stable bash ci/script.sh
6363
- name: Run CI script for thumbv8m.main-none-eabihf under stable
6464
run: TARGET=thumbv8m.main-none-eabihf TRAVIS_RUST_VERSION=stable bash ci/script.sh
65-
- uses: imjohnbo/issue-bot@v2
65+
- uses: imjohnbo/issue-bot@v3
6666
if: failure()
6767
with:
6868
title: CI Failure

.github/workflows/on-target.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
hil-qemu:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3
1616
- uses: actions-rs/toolchain@v1
1717
with:
1818
profile: minimal
@@ -37,7 +37,7 @@ jobs:
3737
hil-compile-rtt:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v3
4141
- uses: actions-rs/toolchain@v1
4242
with:
4343
profile: minimal
@@ -53,7 +53,7 @@ jobs:
5353
RUSTFLAGS: -C link-arg=-Tlink.x -D warnings
5454
run: cargo build -p testsuite --target thumbv6m-none-eabi --features testsuite/rtt
5555
- name: Upload testsuite binaries
56-
uses: actions/upload-artifact@v2
56+
uses: actions/upload-artifact@v3
5757
with:
5858
name: testsuite-bin
5959
if-no-files-found: error
@@ -65,12 +65,12 @@ jobs:
6565
needs:
6666
- hil-compile-rtt
6767
steps:
68-
- uses: actions/checkout@v2
68+
- uses: actions/checkout@v3
6969
- name: Display probe-run version
7070
run: probe-run --version
7171
- name: List probes
7272
run: probe-run --list-probes
73-
- uses: actions/download-artifact@v2
73+
- uses: actions/download-artifact@v3
7474
with:
7575
name: testsuite-bin
7676
path: testsuite-bin

.github/workflows/rt-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
run:
2222
working-directory: cortex-m-rt
2323
steps:
24-
- uses: actions/checkout@v2
24+
- uses: actions/checkout@v3
2525
- uses: actions-rs/toolchain@v1
2626
with:
2727
profile: minimal
@@ -60,7 +60,7 @@ jobs:
6060
run:
6161
working-directory: cortex-m-rt
6262
steps:
63-
- uses: actions/checkout@v2
63+
- uses: actions/checkout@v3
6464
- uses: actions-rs/toolchain@v1
6565
with:
6666
profile: minimal

.github/workflows/rustfmt.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: rustfmt
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- uses: actions-rs/toolchain@v1
1515
with:
1616
profile: minimal

0 commit comments

Comments
 (0)