Skip to content
This repository was archived by the owner on Mar 14, 2025. It is now read-only.

Commit aaabde0

Browse files
Bumping ubuntu to the latest
1 parent 82bcdb0 commit aaabde0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/actions/setup-go/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ runs:
4040
shell: bash
4141
run: echo "path=./${{ inputs.go-module-file }}" >> $GITHUB_OUTPUT
4242

43-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
43+
- uses: actions/cache@v4 # v4.0.2
4444
name: Cache Go Modules
4545
with:
4646
path: |
@@ -51,7 +51,7 @@ runs:
5151
restore-keys: |
5252
${{ runner.os }}-gomod-${{ inputs.cache-version }}-
5353
54-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
54+
- uses: actions/cache@v4
5555
if: ${{ inputs.only-modules == 'false' }}
5656
name: Cache Go Build Outputs
5757
with:

.github/actions/setup-hardhat/action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ runs:
1111
using: composite
1212
steps:
1313
- name: Cache Compilers
14-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
14+
uses: actions/cache@v4
1515
with:
1616
path: ~/.cache/hardhat-nodejs/
1717
key: contracts-compilers-${{ runner.os }}-${{ inputs.cache-version }}-${{ hashFiles('contracts/pnpm-lock.yaml', 'contracts/hardhat.config.ts') }}
1818

1919
- name: Cache contracts build outputs
20-
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
20+
uses: actions/cache@v4
2121
with:
2222
path: |
2323
contracts/cache/

.github/actions/setup-solana/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: composite
1010
steps:
11-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
11+
- uses: actions/cache@v4
1212
id: cache
1313
name: Cache solana CLI
1414
with:

.github/actions/setup-wasmd/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inputs:
88
runs:
99
using: composite
1010
steps:
11-
- uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4.0.2
11+
- uses: actions/cache@v4
1212
id: cache
1313
name: Cache wasmd-build
1414
with:

0 commit comments

Comments
 (0)