Skip to content

Commit f9087fc

Browse files
🚨 Update github actions
1 parent 65cf118 commit f9087fc

7 files changed

Lines changed: 43 additions & 43 deletions

File tree

.github/workflows/benchmark.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,16 +45,16 @@ jobs:
4545
disable-telemetry: true
4646

4747
- name: Checkout repository
48-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
48+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4949

5050
- name: Restore Cache
51-
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
51+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5252
with:
5353
key: main
5454
path: '**'
5555

5656
- name: Setup Go environment
57-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
57+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
5858
with:
5959
go-version-file: go.mod
6060
cache: false

.github/workflows/checks-codecov.yaml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ jobs:
4343
disable-telemetry: true
4444

4545
- name: Checkout repository
46-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
46+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
4747
with:
4848
# Needed in hack/derive-version.sh
4949
fetch-depth: 0
5050

5151
- name: Restore Cache
52-
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
52+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5353
with:
5454
key: main
5555
path: '**'
5656

5757
- name: Setup Go environment
58-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
58+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
5959
with:
6060
go-version-file: go.mod
6161
cache: false
@@ -86,7 +86,7 @@ jobs:
8686
run: make test
8787

8888
- name: Upload test coverage artifacts
89-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
89+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
9090
with:
9191
name: coverage-test
9292
path: |
@@ -107,10 +107,10 @@ jobs:
107107
# disable-telemetry: true
108108

109109
- name: Checkout repository
110-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
110+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
111111

112112
- name: Cache Go build and module artifacts
113-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
113+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
114114
with:
115115
path: |
116116
~/.cache/go-build
@@ -120,7 +120,7 @@ jobs:
120120
go-acceptance-${{ runner.os }}-
121121
122122
- name: Setup Go environment
123-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
123+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
124124
with:
125125
go-version-file: go.mod
126126
cache: false
@@ -156,7 +156,7 @@ jobs:
156156
run: E2E_INSTRUMENTATION=true make acceptance
157157

158158
- name: Upload acceptance coverage artifact
159-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
159+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
160160
with:
161161
name: coverage-acceptance
162162
path: ./coverage-acceptance.out
@@ -175,24 +175,24 @@ jobs:
175175

176176
# checkout is required for codecov to map the coverage data back to files in the repo
177177
- name: Checkout repository
178-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
178+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
179179
with:
180180
fetch-depth: 0
181181

182182
- name: Download test coverage artifacts
183-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
183+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
184184
with:
185185
name: coverage-test
186186
path: ./coverage
187187

188188
- name: Download acceptance coverage artifact
189-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
189+
uses: actions/download-artifact@3e5f45b2cfb9172054b4087a40e8e0b5a5461e7c # v8.0.1
190190
with:
191191
name: coverage-acceptance
192192
path: ./coverage
193193

194194
- name: Upload unit test coverage report
195-
uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5
195+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
196196
env:
197197
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
198198
with:
@@ -201,7 +201,7 @@ jobs:
201201
flags: unit
202202

203203
- name: Upload generative test coverage report
204-
uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5
204+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
205205
env:
206206
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
207207
with:
@@ -210,7 +210,7 @@ jobs:
210210
flags: generative
211211

212212
- name: Upload integration test coverage report
213-
uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5
213+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
214214
env:
215215
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
216216
with:
@@ -219,7 +219,7 @@ jobs:
219219
flags: integration
220220

221221
- name: Upload acceptance test coverage report
222-
uses: codecov/codecov-action@0fb7174895f61a3b6b78fc075e0cd60383518dac # v5.5.5
222+
uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f # v7.0.0
223223
env:
224224
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
225225
with:
@@ -231,16 +231,16 @@ jobs:
231231
runs-on: ubuntu-latest
232232
steps:
233233
- name: Checkout repository
234-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
234+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
235235

236236
- name: Restore Cache
237-
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
237+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
238238
with:
239239
key: main
240240
path: '**'
241241

242242
- name: Setup Go environment
243-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
243+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
244244
with:
245245
go-version-file: go.mod
246246
cache: false

.github/workflows/codeql.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,16 @@ jobs:
5353
disable-telemetry: true
5454

5555
- name: Checkout repository
56-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
56+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
5757

5858
- name: Restore Cache
59-
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
59+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
6060
with:
6161
key: main
6262
path: '**'
6363

6464
- name: Setup Go environment
65-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
65+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
6666
with:
6767
go-version-file: go.mod
6868
cache: false

.github/workflows/lint.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,24 +47,24 @@ jobs:
4747
disable-telemetry: true
4848

4949
- name: Checkout repository
50-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
50+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
5151
with:
5252
fetch-depth: 0
5353

5454
- name: Restore Cache
55-
uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
55+
uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
5656
with:
5757
key: main
5858
path: '**'
5959

6060
- name: Setup Go environment
61-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
61+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
6262
with:
6363
go-version-file: go.mod
6464
cache: false
6565

6666
- name: Setup Node.js environment
67-
uses: actions/setup-node@249970729cb0ef3589644e2896645e5dc5ba9c38 # v6.5.0
67+
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
6868
with:
6969
node-version-file: 'package.json'
7070

.github/workflows/release.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
swap-storage: false
7979

8080
- name: Checkout repository
81-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
81+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
8282
with:
8383
fetch-depth: 0
8484

@@ -87,15 +87,15 @@ jobs:
8787
"${GITHUB_WORKSPACE}/hack/ubuntu-podman-update.sh"
8888
8989
- name: Cache
90-
uses: actions/cache@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
90+
uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
9191
with:
9292
path: |
9393
~/.cache/go-build
9494
~/go/pkg/mod
9595
key: main
9696

9797
- name: Setup Go environment
98-
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
98+
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
9999
with:
100100
go-version-file: go.mod
101101
cache: false
@@ -109,7 +109,7 @@ jobs:
109109
run: make dist
110110

111111
- name: Set up QEMU
112-
uses: docker/setup-qemu-action@c7c53464625b32c7a7e944ae62b3e17d2b600130 # v3.7.0
112+
uses: docker/setup-qemu-action@1f40c72289eff860ee54a304f1438e3cff362e0a # v4.3.0
113113

114114
- name: Registry login (quay.io/conforma)
115115
run: podman login -u ${{ secrets.BUNDLE_PUSH_USER_CONFORMA }} -p ${{ secrets.BUNDLE_PUSH_PASS_CONFORMA }} quay.io
@@ -169,15 +169,15 @@ jobs:
169169
run: hack/stats.sh
170170

171171
- name: Configure statistics pages
172-
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
172+
uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0
173173

174174
- name: Upload statistics
175-
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
175+
uses: actions/upload-pages-artifact@fc324d3547104276b827a68afc52ff2a11cc49c9 # v5.0.0
176176
with:
177177
path: stats
178178

179179
- name: Deploy statistics
180-
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
180+
uses: actions/deploy-pages@368f82528645a54fb793d4d04e342629a3f51346 # v5.0.1
181181

182182
- name: Delete snapshot release and tag
183183
id: add_tags
@@ -201,7 +201,7 @@ jobs:
201201
git push -f --tags
202202
203203
- name: Rolling release
204-
uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
204+
uses: softprops/action-gh-release@efb35369e0ad2afab669f228072c1b0d510eae64 # v3
205205
with:
206206
make_latest: true
207207
name: Rolling release
@@ -211,7 +211,7 @@ jobs:
211211
files: dist/*
212212

213213
- name: Versioned release
214-
uses: softprops/action-gh-release@3bb12739c298aeb8a4eeaf626c5b8d85266b0e65 # v2
214+
uses: softprops/action-gh-release@efb35369e0ad2afab669f228072c1b0d510eae64 # v3
215215
with:
216216
make_latest: false
217217
name: ${{ steps.add_tags.outputs.tag_name }}

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
disable-telemetry: true
5353

5454
- name: Checkout code
55-
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
55+
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
5656
with:
5757
persist-credentials: false
5858

@@ -67,7 +67,7 @@ jobs:
6767
# Upload the results as artifacts (optional). Commenting out will disable
6868
# uploads of run results in SARIF format to the repository Actions tab.
6969
- name: Upload artifact
70-
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
70+
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
7171
with:
7272
name: SARIF file
7373
path: results.sarif

.github/workflows/update-go-containerregistry.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,14 @@ jobs:
3030
update:
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
33+
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
3434

35-
- uses: actions/cache/restore@caa296126883cff596d87d8935842f9db880ef25 # v5.1.0
35+
- uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0
3636
with:
3737
key: main
3838
path: '**'
3939

40-
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
40+
- uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
4141
with:
4242
go-version-file: go.mod
4343
cache: false
@@ -51,7 +51,7 @@ jobs:
5151
# https://github.com/golang/go/issues/45413
5252
GOPRIVATE: github.com/conforma/go-containerregistry
5353

54-
- uses: actions/create-github-app-token@fee1f7d63c2ff003460e3d139729b119787bc349 # v2.2.2
54+
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
5555
id: generate-token
5656
with:
5757
app-id: ${{ vars.EC_AUTOMATION_APP_ID }}

0 commit comments

Comments
 (0)