Skip to content

Commit

Permalink
[Chore] Update "actions/checkout" (#141)
Browse files Browse the repository at this point in the history
Problem: node16 is now deprecated and github-runner provided by nixpkgs
no longer supports this runtime. However, "actions/checkout@v3" uses
this runtime.

Solution: Update CI pipeline to use "actions/checkout@v4".
  • Loading branch information
rvem authored Jan 17, 2024
1 parent 9b9e4d5 commit 8a24e72
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ jobs:
name: REUSE Compliance Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: fsfe/[email protected]

xrefcheck:
name: Verify cross references
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: serokell/xrefcheck-action@v1
with:
xrefcheck-version: 0.2.2
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
ghc: 9.0.2

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

- uses: haskell/actions/setup@v2
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
ghc: ["9.4.5"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: github.event.action == 'opened' || github.event.action == 'synchronize' || github.event.ref == 'refs/heads/master'

- uses: haskell/actions/setup@v2
Expand Down

0 comments on commit 8a24e72

Please sign in to comment.