Skip to content

Commit

Permalink
chore: update checkout github action (#245)
Browse files Browse the repository at this point in the history
Some actions were using checkout@v2, which could possibly be why some
workflows are failing due to conflicting permissions when installing
Node
  • Loading branch information
CjS77 authored Nov 21, 2023
1 parent f39582a commit b1e5624
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-ci-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -150,7 +150,7 @@
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: setup node
uses: actions/setup-node@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: install ripgrep
run: |
wget https://github.com/BurntSushi/ripgrep/releases/download/13.0.0/ripgrep_13.0.0_amd64.deb
sudo dpkg -i ripgrep_13.0.0_amd64.deb
rg --version || exit 1
- name: run the license check
run: ./scripts/file_license_check.sh
run: ./scripts/file_license_check.sh
2 changes: 1 addition & 1 deletion .github/workflows/reusable-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: toolchain
uses: actions-rs/toolchain@v1
- name: setup node
Expand Down

0 comments on commit b1e5624

Please sign in to comment.