Skip to content

Commit

Permalink
Bump actions/cache from 3 to 4 (#236)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] committed Jan 23, 2024
1 parent 503b836 commit 73c2cf3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/action.yml
Expand Up @@ -20,14 +20,14 @@ jobs:

- name: Cache choosenim
id: cache-choosenim
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.choosenim
key: ${{ runner.os }}-choosenim-${{ matrix.nim-version}}

- name: Cache nimble
id: cache-nimble
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ matrix.nim-version}}-${{ hashFiles('prologue.nimble') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
run: echo "::set-output name=dir::$(pip cache dir)"

- name: Cache dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
Expand All @@ -55,14 +55,14 @@ jobs:

- name: Cache choosenim
id: cache-choosenim
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.choosenim
key: ${{ runner.os }}-choosenim-stable

- name: Cache nimble
id: cache-nimble
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.nimble
key: ${{ runner.os }}-nimble-${{ hashFiles('prologue.nimble') }}
Expand Down

0 comments on commit 73c2cf3

Please sign in to comment.