Skip to content

Commit 7063045

Browse files
authored
[Chore] Update "actions/checkout" (#4)
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".
1 parent 282fe54 commit 7063045

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
name: Verify cross references
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: serokell/xrefcheck-action@v1
2424
with:
2525
xrefcheck-version: 0.3.1
@@ -45,7 +45,7 @@ jobs:
4545
ghc: 8.4.4
4646

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

5151
- uses: haskell/actions/setup@v2
@@ -84,7 +84,7 @@ jobs:
8484
ghc: ["8.8.3"]
8585

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

9090
- uses: haskell/actions/setup@v2
@@ -110,6 +110,6 @@ jobs:
110110
reuse:
111111
runs-on: ubuntu-latest
112112
steps:
113-
- uses: actions/checkout@v3
113+
- uses: actions/checkout@v4
114114
- name: REUSE Compliance Check
115115
uses: fsfe/reuse-action@v1

0 commit comments

Comments
 (0)