Skip to content

Commit 99e2bf9

Browse files
committed
ci: pin actions by sha
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
1 parent 469a746 commit 99e2bf9

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,17 @@ jobs:
2828
shell: bash
2929
steps:
3030
- name: Checkout code
31-
uses: actions/checkout@v6
31+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
3232
- name: Install Go
33-
uses: actions/setup-go@v6
33+
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6
3434
with:
3535
go-version: ${{ matrix.go-version }}
3636
# Disable caching as we don't have top-level go.sum needed for
3737
# the cache key, and specifying multiple go.sums is not trivial
3838
# (see https://github.com/moby/sys/pull/160 for details).
3939
cache: false
4040
- name: Install golangci-lint
41-
uses: golangci/golangci-lint-action@v9
41+
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
4242
with:
4343
version: v2.10
4444
# We don't need to run golangci-lint here yet, but
@@ -80,14 +80,14 @@ jobs:
8080
uname -a
8181
make test
8282
- name: Send to Codecov
83-
uses: codecov/codecov-action@v5
83+
uses: codecov/codecov-action@1af58845a975a7985b0beb0cbe6fbbb71a41dbad # v5
8484
with:
8585
token: ${{ secrets.CODECOV_TOKEN }} # used to upload coverage reports: https://github.com/moby/buildkit/pull/4660#issue-2142122533
8686

8787
codespell:
8888
runs-on: ubuntu-24.04
8989
timeout-minutes: 10 # guardrails timeout for the whole job
9090
steps:
91-
- uses: actions/checkout@v6
91+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
9292
- run: pip install --break-system-packages codespell==v2.3.0
9393
- run: codespell

0 commit comments

Comments
 (0)