Skip to content

Commit

Permalink
Use Github actions/checkout@v3 (#516)
Browse files Browse the repository at this point in the history
Github warns about v2 using a deprecated version of nodejs, so use v3.
  • Loading branch information
graebm authored Jul 17, 2023
1 parent 6e3989f commit d707bab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ jobs:
check-docs:
runs-on: ubuntu-22.04 # latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
submodules: true
- name: Check docs
Expand All @@ -280,7 +280,7 @@ jobs:
runs-on: ubuntu-22.04 # latest
steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: true
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout Sources
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0

Expand Down

0 comments on commit d707bab

Please sign in to comment.