From 6ae29a25e87681ac83f9e5890938a74226c5641c Mon Sep 17 00:00:00 2001 From: Burkhard Mittelbach Date: Sun, 4 Dec 2022 18:29:42 +0100 Subject: [PATCH] ci: update actions to use `actions/checkout@v3` (#17) --- .github/workflows/ci.yml | 6 +++--- .github/workflows/readme-stars.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ff9de26..7cfbf87 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,14 +10,14 @@ jobs: runs-on: ubuntu-latest name: Check steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: cargo check run: cargo check test: runs-on: ubuntu-latest name: Test steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: cargo test run: cargo test # uncomment to enable clippy lints @@ -25,7 +25,7 @@ jobs: # runs-on: ubuntu-latest # name: Lint (clippy) # steps: - # - uses: actions/checkout@v2 + # - uses: actions/checkout@v3 # - name: cargo clippy # run: cargo clippy -- -D warnings # uncoment to enable format checking diff --git a/.github/workflows/readme-stars.yml b/.github/workflows/readme-stars.yml index 026095e..4b943fa 100644 --- a/.github/workflows/readme-stars.yml +++ b/.github/workflows/readme-stars.yml @@ -10,7 +10,7 @@ jobs: update-readme: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 if: ${{ env.AOC_ENABLED }} env: AOC_ENABLED: ${{ secrets.AOC_ENABLED }}