Skip to content

Commit 80add6a

Browse files
committed
github:lock actions to commit
1 parent 91855a9 commit 80add6a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ runs:
1313
echo "OS_ARCH=`uname -m`" >> $GITHUB_ENV
1414
sudo apt -y install build-essential openssl libssl-dev pkg-config liblz4-tool
1515
shell: bash
16-
- uses: actions/cache@v4
16+
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
1717
# Cache `cargo-make`, `cargo-cache`
1818
with:
1919
path: |
2020
~/.cargo
2121
key: ${{ hashFiles('.github/workflows/cache.yml') }}-${{ runner.os }}-${{ env.OS_ARCH }}
22-
- uses: actions/cache@v4
22+
- uses: actions/cache@d4323d4df104b026a6aa633fdb11d772146be0bf
2323
# Cache first-party code dependencies
2424
with:
2525
path: |

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
delay=$((1 + $RANDOM % 32))
4141
echo "Waiting ${delay} seconds before execution"
4242
sleep $delay
43-
- uses: actions/checkout@v4
43+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4444
- name: Preflight step to set up the runner
4545
uses: ./.github/actions/setup-node
4646
- run: rustup component add rustfmt

.github/workflows/cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
labels: bottlerocket_ubuntu-latest_8-core
1919
continue-on-error: true
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2222
- name: Preflight step to set up the runner
2323
uses: ./.github/actions/setup-node
2424
with:

.github/workflows/weekly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
fail-fast: false
3131
name: "Build ${{ matrix.arch }}"
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
3434
- name: Preflight step to set up the runner
3535
uses: ./.github/actions/setup-node
3636
- run: |

0 commit comments

Comments
 (0)