ci: update actions to use actions/checkout@v3
(#17)
This commit is contained in:
parent
6379e82105
commit
6ae29a25e8
2 changed files with 4 additions and 4 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
@ -10,14 +10,14 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Check
|
name: Check
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: cargo check
|
- name: cargo check
|
||||||
run: cargo check
|
run: cargo check
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
name: Test
|
name: Test
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
- name: cargo test
|
- name: cargo test
|
||||||
run: cargo test
|
run: cargo test
|
||||||
# uncomment to enable clippy lints
|
# uncomment to enable clippy lints
|
||||||
|
@ -25,7 +25,7 @@ jobs:
|
||||||
# runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
# name: Lint (clippy)
|
# name: Lint (clippy)
|
||||||
# steps:
|
# steps:
|
||||||
# - uses: actions/checkout@v2
|
# - uses: actions/checkout@v3
|
||||||
# - name: cargo clippy
|
# - name: cargo clippy
|
||||||
# run: cargo clippy -- -D warnings
|
# run: cargo clippy -- -D warnings
|
||||||
# uncoment to enable format checking
|
# uncoment to enable format checking
|
||||||
|
|
2
.github/workflows/readme-stars.yml
vendored
2
.github/workflows/readme-stars.yml
vendored
|
@ -10,7 +10,7 @@ jobs:
|
||||||
update-readme:
|
update-readme:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
if: ${{ env.AOC_ENABLED }}
|
if: ${{ env.AOC_ENABLED }}
|
||||||
env:
|
env:
|
||||||
AOC_ENABLED: ${{ secrets.AOC_ENABLED }}
|
AOC_ENABLED: ${{ secrets.AOC_ENABLED }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue