Skip to content

Commit

Permalink
ci: upgrade checkout action to v4
Browse files Browse the repository at this point in the history
This update is necessary as GitHub Actions will stop supporting
Node.js 16. Version 4 now uses Node.js 20.

Reference:
https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/

Signed-off-by: Renato Westphal <renato@opensourcerouting.org>
  • Loading branch information
rwestphal committed Mar 8, 2024
1 parent ee45813 commit dfb0aae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Code Formatting Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
with:
components: rustfmt
Expand All @@ -34,7 +34,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@nightly
- name: Generate test result and coverage report
run: |
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/login-action@v2
with:
registry: ghcr.io
Expand Down

0 comments on commit dfb0aae

Please sign in to comment.