Skip to content

Commit 5417e8a

Browse files
Update GitHub Actions
1 parent 1eb8e54 commit 5417e8a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
with:
4242
go-version-file: 'go.mod'
4343
- name: Install golangci-lint
44-
uses: golangci/golangci-lint-action@55c2c1448f86e01eaae002a5a3a9624417608d84 # v6.5.2
44+
uses: golangci/golangci-lint-action@4afd733a84b1f43292c63897423277bb7f4313a9 # v8.0.0
4545
with:
4646
version: v1.64.8
4747

.github/workflows/publish-head.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
ARCH: "${{ matrix.arch}}"
3535
GOARCH: "${{ matrix.arch}}"
3636
- name: Upload artifacts
37-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
37+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3838
with:
3939
name: webhook-artifacts-${{ matrix.arch }}
4040
path: |
@@ -55,7 +55,7 @@ jobs:
5555
- name : Checkout repository
5656
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5757
- name: Download the artifacts
58-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
58+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
5959
with:
6060
name: webhook-artifacts-${{ matrix.arch }}
6161
path: dist/artifacts
@@ -94,7 +94,7 @@ jobs:
9494
digest="${{ steps.build.outputs.digest }}"
9595
touch "/tmp/digests/${digest#sha256:}"
9696
- name: Upload digest
97-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
97+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
9898
with:
9999
name: digests-${{ matrix.arch }}
100100
path: /tmp/digests/*
@@ -107,7 +107,7 @@ jobs:
107107
needs: image
108108
steps:
109109
- name: Download digests
110-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
110+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
111111
with:
112112
path: /tmp/digests
113113
pattern: digests-*

.github/workflows/release.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
5252
- name: Upload artifacts
5353
# https://github.com/actions/upload-artifact/commit/65462800fd760344b1a7b4382951275a0abb4808
54-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
54+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
75+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
82+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
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@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
117117

118118
- name: Download the artifacts
119-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
119+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
120120
# https://github.com/actions/download-artifact/releases/tag/v4.1.7
121121
with:
122122
name: webhook-artifacts-${{ matrix.arch }}
@@ -168,7 +168,7 @@ jobs:
168168
touch "/tmp/digests/${digest#sha256:}"
169169
170170
- name: Upload digest
171-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
171+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
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@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
186+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
187187
# https://github.com/actions/download-artifact/releases/tag/v4.1.7
188188
with:
189189
path: /tmp/digests

0 commit comments

Comments
 (0)