Skip to content

Commit cd866c0

Browse files
Pin dependencies
1 parent bead269 commit cd866c0

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
3434

3535
- name: Setup Go
36-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
36+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
3737
# https://github.com/actions/setup-go/releases/tag/v5.0.0
3838
with:
3939
go-version-file: 'go.mod'

.github/workflows/release.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# https://github.com/actions/checkout/releases/tag/v4.1.1
3030

3131
- name: Setup Go
32-
uses: actions/setup-go@f111f3307d8850f501ac008e886eec1fd1932a34 # v5.3.0
32+
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # v5.4.0
3333
# https://github.com/actions/setup-go/releases/tag/v5.0.0
3434
with:
3535
go-version-file: 'go.mod'
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Upload artifacts
5353
# https://github.com/actions/upload-artifact/commit/65462800fd760344b1a7b4382951275a0abb4808
54-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1
54+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02
5555
with:
5656
name: webhook-artifacts-${{ matrix.arch }}
5757
path: |
@@ -72,14 +72,14 @@ jobs:
7272
run: ./scripts/package-helm
7373

7474
- name: Download the amd64 artifacts
75-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
75+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
7676
# https://github.com/actions/download-artifact/releases/tag/v4.1.7
7777
with:
7878
name: webhook-artifacts-amd64
7979
path: dist/artifacts
8080

8181
- name: Download the arm64 artifacts
82-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
82+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
8383
# https://github.com/actions/download-artifact/releases/tag/v4.1.7
8484
with:
8585
name: webhook-artifacts-arm64
@@ -116,7 +116,7 @@ jobs:
116116
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
117117

118118
- name: Download the artifacts
119-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
119+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
120120
# https://github.com/actions/download-artifact/releases/tag/v4.1.7
121121
with:
122122
name: webhook-artifacts-${{ matrix.arch }}
@@ -144,7 +144,7 @@ jobs:
144144
# https://github.com/docker/setup-buildx-action/releases/tag/v3.4.0
145145

146146
- name: Log in to the Container registry
147-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
147+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
148148
# https://github.com/docker/login-action/releases/tag/v3.2.0
149149
with:
150150
registry: ${{ env.REGISTRY }}
@@ -153,7 +153,7 @@ jobs:
153153

154154
- name: Build and push the webhook image
155155
id: build
156-
uses: docker/build-push-action@1a162644f9a7e87d8f4b053101d1d9a712edc18c # v6.3.0
156+
uses: docker/build-push-action@471d1dc4e07e5cdedd4c2171150001c434f0b7a4 # v6.15.0
157157
# https://github.com/docker/build-push-action/releases/tag/v6.3.0
158158
with:
159159
context: .
@@ -168,7 +168,7 @@ jobs:
168168
touch "/tmp/digests/${digest#sha256:}"
169169
170170
- name: Upload digest
171-
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
171+
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
172172
# https://github.com/actions/upload-artifact/releases/tag/v4.3.3
173173
with:
174174
name: digests-${{ matrix.arch }}
@@ -183,7 +183,7 @@ jobs:
183183
needs: image
184184
steps:
185185
- name: Download digests
186-
uses: actions/download-artifact@cc203385981b70ca67e1cc392babf9cc229d5806 # v4.1.9
186+
uses: actions/download-artifact@95815c38cf2ff2164869cbab79da8d1f422bc89e # v4.2.1
187187
# https://github.com/actions/download-artifact/releases/tag/v4.1.7
188188
with:
189189
path: /tmp/digests
@@ -202,7 +202,7 @@ jobs:
202202
secret/data/github/repo/${{ github.repository }}/dockerhub/rancher/credentials password | DOCKER_PASSWORD
203203
204204
- name: Log in to the Container registry
205-
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3.0
205+
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772 # v3.4.0
206206
# https://github.com/docker/login-action/releases/tag/v3.2.0
207207
with:
208208
registry: ${{ env.REGISTRY }}

.github/workflows/sync-deps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
secret/data/github/repo/${{ github.repository }}/github/app-credentials privateKey | PRIVATE_KEY
3434
3535
# Fetch github token just for the webhook repository
36-
- uses: actions/create-github-app-token@v1
36+
- uses: actions/create-github-app-token@21cfef2b496dd8ef5b904c159339626a10ad380e # v1
3737
id: app-token
3838
with:
3939
app-id: ${{ env.APP_ID }}

0 commit comments

Comments
 (0)