Skip to content

Commit 739039f

Browse files
committed
github:lock actions to commit
1 parent a78a68e commit 739039f

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
steps:
66
- run: sudo apt -y install build-essential openssl libssl-dev pkg-config liblz4-tool clang
77
shell: bash
8-
- uses: actions/cache/restore@v4
8+
- uses: actions/cache/restore@d4323d4df104b026a6aa633fdb11d772146be0bf
99
# Restore most recent cache if available.
1010
with:
1111
path: |

.github/workflows/build.yml

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

.github/workflows/cache.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
permissions:
1919
actions: write
2020
steps:
21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2222
# Install dependencies for twoliter and cargo-make.
2323
- run: sudo apt -y install build-essential openssl libssl-dev pkg-config liblz4-tool
2424
shell: bash
@@ -47,7 +47,7 @@ jobs:
4747
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4848
continue-on-error: true
4949
# This caches the reusable artifacts for future CI runs.
50-
- uses: actions/cache/save@v4
50+
- uses: actions/cache/save@d4323d4df104b026a6aa633fdb11d772146be0bf
5151
# Save Rust dependencies
5252
with:
5353
path: |

.github/workflows/golangci-lint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ jobs:
1414
name: lint
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/setup-go@v5
17+
- uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34
1818
with:
1919
go-version: 1.21
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
2121
- name: lint-host-ctr
22-
uses: golangci/golangci-lint-action@v6
22+
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84
2323
with:
2424
version: latest
2525
working-directory: sources/host-ctr
2626
- name: lint-ecs-gpu-init
27-
uses: golangci/golangci-lint-action@v6
27+
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84
2828
with:
2929
version: latest
3030
working-directory: sources/ecs-gpu-init

.github/workflows/validate-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
validate:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
1313
- run: ./tools/validate-changelog.sh

0 commit comments

Comments
 (0)