Skip to content

Commit

Permalink
Merge pull request #3591 from jwnrt/github-actions-update
Browse files Browse the repository at this point in the history
Update EOL GitHub Actions dependencies
  • Loading branch information
ppannuto committed Aug 4, 2023
2 parents 08ff147 + 3bc4fb8 commit 133cbba
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1 # pulls version from rust-toolchain file
with:
components: rustfmt, clippy
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1 # pulls version from rust-toolchain file
- uses: actions/setup-node@v1
with:
components: rustfmt
- uses: actions/setup-node@v3
- name: ci-job-format
run: make ci-job-format
- name: ci-markdown-toc
Expand All @@ -51,7 +51,7 @@ jobs:

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1 # pulls version from rust-toolchain file
with:
components: clippy
Expand All @@ -65,7 +65,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1

- name: ci-job-syntax
Expand All @@ -78,7 +78,7 @@ jobs:
- name: ci-job-collect-artifacts
run: make ci-job-collect-artifacts
- name: upload-build-artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: build-artifacts
path: tools/ci-artifacts
Expand All @@ -102,7 +102,7 @@ jobs:
run: |
brew install zeromq
if: matrix.os == 'macos-latest'
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
- name: ci-job-libraries
run: make ci-job-libraries
Expand All @@ -126,7 +126,7 @@ jobs:
continue-on-error: true
run: |
sudo apt install meson
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
- name: ci-job-qemu
run: make ci-job-qemu
6 changes: 3 additions & 3 deletions .github/workflows/litex_sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# that other steps (such as the Rust toolchain) depend on files
# in this repo.
- name: Checkout the current repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Install basic packages required for the GitHub actions workflow
- name: Update packages and install dependencies
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
# Clone tock-litex support repository under ./tock-litex, check out the
# targeted release.
- name: Checkout the tock-litex repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: lschuermann/tock-litex
# The pinned revision is different from the targeted release as
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:
# Revision to checkout defined in the main tock repository in
# .libtock_c_ci_rev
- name: Checkout libtock-c CI revision
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: tock/libtock-c
# Pins a libtock-c revision for LiteX CI tests. In case of
Expand Down

0 comments on commit 133cbba

Please sign in to comment.