Skip to content

Commit 6ae29a2

Browse files
authored
ci: update actions to use actions/checkout@v3 (#17)
1 parent 6379e82 commit 6ae29a2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ jobs:
1010
runs-on: ubuntu-latest
1111
name: Check
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
- name: cargo check
1515
run: cargo check
1616
test:
1717
runs-on: ubuntu-latest
1818
name: Test
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v3
2121
- name: cargo test
2222
run: cargo test
2323
# uncomment to enable clippy lints
2424
# clippy:
2525
# runs-on: ubuntu-latest
2626
# name: Lint (clippy)
2727
# steps:
28-
# - uses: actions/checkout@v2
28+
# - uses: actions/checkout@v3
2929
# - name: cargo clippy
3030
# run: cargo clippy -- -D warnings
3131
# uncoment to enable format checking

.github/workflows/readme-stars.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
update-readme:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v3
1414
if: ${{ env.AOC_ENABLED }}
1515
env:
1616
AOC_ENABLED: ${{ secrets.AOC_ENABLED }}

0 commit comments

Comments
 (0)