Skip to content

Commit 410c561

Browse files
authored
Merge pull request #4448 from rpkelly/update-actions
github:lock actions to commit
2 parents dfd70c4 + 7c4cd21 commit 410c561

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

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

+2-2
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
delay=$((1 + $RANDOM % 32))
4343
echo "Waiting ${delay} seconds before execution"
4444
sleep $delay
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
4646
- name: Preflight step to set up the runner
4747
uses: ./.github/actions/setup-node
4848
- run: rustup component add rustfmt

.github/workflows/cache.yml

+1-1
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

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,11 @@ 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: |
37-
cargo make -e \
37+
cargo make \
3838
-e BUILDSYS_ARCH=${{ matrix.arch }} \
3939
-e BUILDSYS_JOBS=12 \
4040
build-all

0 commit comments

Comments
 (0)