Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions actions/ci-benchmarking/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ runs:

- name: Download Previous Benchmark Data
if: ${{ env.IS_PR == 'true' || env.IS_MERGE == 'true' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ./cache
key: ${{ runner.os }}-benchmark
Expand Down Expand Up @@ -141,7 +141,7 @@ runs:

- name: Upload Updated Benchmark Data
if: ${{ env.IS_MERGE == 'true' }}
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ./cache
key: ${{ runner.os }}-benchmark
Expand Down
6 changes: 3 additions & 3 deletions actions/ctf-setup-go/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ runs:

- name: Cache Go Modules
if: inputs.cache_restore_only == 'false' && inputs.no_cache == 'false'
uses: actions/cache@v4
uses: actions/cache@v5
id: cache-packages
with:
path: ${{ steps.go-cache-dir.outputs.gomodcache }}
Expand All @@ -104,7 +104,7 @@ runs:
restore-keys: |
${{ runner.os }}-${{ inputs.cache_key_id }}-gomod-

- uses: actions/cache@v4
- uses: actions/cache@v5
if: inputs.cache_restore_only == 'false' && inputs.cache_builds == 'true'
name: Cache Go Builds
with:
Expand All @@ -118,7 +118,7 @@ runs:

- name: Restore Go Modules
if: inputs.cache_restore_only != 'false' && inputs.no_cache == 'false'
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
id: restore-cache-packages
with:
path: |
Expand Down
8 changes: 4 additions & 4 deletions actions/setup-golang/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ runs:
echo "gomodcache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT
echo "gobuildcache=$(go env GOCACHE)" >> $GITHUB_OUTPUT

- uses: actions/cache/restore@v4
- uses: actions/cache/restore@v5
if: ${{ inputs.skip-cache-save == 'true' }}
name: Restore Go Modules Cache
id: cache-gomod-restore
Expand All @@ -80,7 +80,7 @@ runs:
restore-keys: |
${{ runner.os }}-gomod-${{ inputs.cache-version }}-

- uses: actions/cache@v4
- uses: actions/cache@v5
if: ${{ inputs.skip-cache-save != 'true' }}
name: Cache Go Modules
id: cache-gomod
Expand All @@ -93,7 +93,7 @@ runs:
restore-keys: |
${{ runner.os }}-gomod-${{ inputs.cache-version }}-

- uses: actions/cache/restore@v4
- uses: actions/cache/restore@v5
if:
${{ inputs.only-modules == 'false' && inputs.skip-cache-save == 'true'
}}
Expand All @@ -110,7 +110,7 @@ runs:
${{ runner.os }}-gobuild-${{ inputs.cache-version }}-${{ hashFiles(inputs.go-cache-dep-path) }}-
${{ runner.os }}-gobuild-${{ inputs.cache-version }}-

- uses: actions/cache@v4
- uses: actions/cache@v5
if:
${{ inputs.only-modules == 'false' && inputs.skip-cache-save != 'true'
}}
Expand Down
4 changes: 2 additions & 2 deletions actions/setup-nodejs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ runs:

- name: Setup pnpm cache
if: inputs.use-cache == 'true' && inputs.restore-cache-only == 'false'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand All @@ -100,7 +100,7 @@ runs:

- name: Restore pnpm cache
if: inputs.use-cache == 'true' && inputs.restore-cache-only == 'true'
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down
Loading