diff options
author | 2023-10-13 13:10:31 -0700 | |
---|---|---|
committer | 2023-10-13 13:10:31 -0700 | |
commit | 522fee645b9e6340ced70d16cfc2d8f3c9d58083 (patch) | |
tree | e7f68fa8cfda403b45e991f9870dac7e60c13f9e | |
parent | 1746a63ca16b68514ea23dcca1543aed00165452 (diff) | |
download | cortex-m-522fee645b9e6340ced70d16cfc2d8f3c9d58083.tar.gz cortex-m-522fee645b9e6340ced70d16cfc2d8f3c9d58083.tar.zst cortex-m-522fee645b9e6340ced70d16cfc2d8f3c9d58083.zip |
actions/checkout: 3 -> 4
This is the same thing but updated from nodejs 16 to 20.
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/clippy.yml | 4 | ||||
-rw-r--r-- | .github/workflows/cron.yml | 4 | ||||
-rw-r--r-- | .github/workflows/on-target.yml | 6 | ||||
-rw-r--r-- | .github/workflows/rt-ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/rustfmt.yml | 2 |
6 files changed, 11 insertions, 11 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 16456af..b396545 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: - rust: nightly experimental: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal diff --git a/.github/workflows/clippy.yml b/.github/workflows/clippy.yml index 9ae8db4..03073ce 100644 --- a/.github/workflows/clippy.yml +++ b/.github/workflows/clippy.yml @@ -10,11 +10,11 @@ jobs: clippy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: github.event_name == 'pull_request_target' with: ref: refs/pull/${{ github.event.number }}/head - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 if: github.event_name != 'pull_request_target' - uses: actions-rs/toolchain@v1 with: diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 866143a..e35b48f 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -9,7 +9,7 @@ jobs: ci-linux: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -36,7 +36,7 @@ jobs: run: working-directory: cortex-m-rt steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal diff --git a/.github/workflows/on-target.yml b/.github/workflows/on-target.yml index 67a1d57..4276269 100644 --- a/.github/workflows/on-target.yml +++ b/.github/workflows/on-target.yml @@ -14,7 +14,7 @@ jobs: hil-qemu: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -39,7 +39,7 @@ jobs: hil-compile-rtt: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -67,7 +67,7 @@ jobs: needs: - hil-compile-rtt steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Display probe-run version run: probe-run --version - name: List probes diff --git a/.github/workflows/rt-ci.yml b/.github/workflows/rt-ci.yml index 383e013..88ce85e 100644 --- a/.github/workflows/rt-ci.yml +++ b/.github/workflows/rt-ci.yml @@ -23,7 +23,7 @@ jobs: run: working-directory: cortex-m-rt steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal @@ -62,7 +62,7 @@ jobs: run: working-directory: cortex-m-rt steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal diff --git a/.github/workflows/rustfmt.yml b/.github/workflows/rustfmt.yml index c19695a..08b68fe 100644 --- a/.github/workflows/rustfmt.yml +++ b/.github/workflows/rustfmt.yml @@ -12,7 +12,7 @@ jobs: name: rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions-rs/toolchain@v1 with: profile: minimal |