diff options
| author | Cody <cody@codyq.dev> | 2023-07-28 02:00:11 -0500 |
|---|---|---|
| committer | Cody <cody@codyq.dev> | 2023-07-28 02:00:11 -0500 |
| commit | c51d6dd7a8113f517c6f097f05cd7ac56d986400 (patch) | |
| tree | 6c911ef07ae9c654f4af3f7e69a6cc957ed07791 /.github/workflows/linting.yml | |
| parent | a43a6c01d7d28c050967d13ca29af952a2ef4b9b (diff) | |
| download | sloth-c51d6dd7a8113f517c6f097f05cd7ac56d986400.tar.gz | |
Updated actions/checkout & actions/cache
Diffstat (limited to '.github/workflows/linting.yml')
| -rw-r--r-- | .github/workflows/linting.yml | 12 |
1 files changed, 6 insertions, 6 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 |
