diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/linting.yml | 12 | ||||
| -rw-r--r-- | .github/workflows/testing.yml | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 42b6707..ba82e51 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -6,8 +6,8 @@ jobs: name: Dependency linting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: | ~/.cargo/registry @@ -23,8 +23,8 @@ jobs: name: Code linting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: | ~/.cargo/registry @@ -44,8 +44,8 @@ jobs: name: Check formatting runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: | ~/.cargo/registry diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 96150cf..6e3269d 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -15,8 +15,8 @@ jobs: name: Test Rust ${{ matrix.rust }} on ${{ matrix.os }} runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v2 - - uses: actions/cache@v2 + - uses: actions/checkout@v3 + - uses: actions/cache@v3 with: path: | ~/.cargo/registry |
