Skip to content

Commit

Permalink
[Chore] Update "actions/checkout"
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 committed Dec 12, 2023
1 parent 522bfc6 commit f29b7be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
check:
runs-on: [self-hosted, nix]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: reuse lint
run: nix shell .#packages.x86_64-linux.reuse -c reuse lint
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
runs-on: [self-hosted, nix]
if: ${{ github.ref == 'refs/heads/master' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: deploy webdemo
run: |
Expand Down

0 comments on commit f29b7be

Please sign in to comment.