Skip to content

Commit 80daccf

Browse files
🚨 Update github actions
1 parent 77868e3 commit 80daccf

File tree

6 files changed

+36
-36
lines changed

6 files changed

+36
-36
lines changed

‎.github/workflows/checks-codecov.yaml‎

Lines changed: 14 additions & 14 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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
46+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.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@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
52+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
5353
with:
5454
key: main
5555
path: '**'
5656

5757
- name: Setup Go environment
58-
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
58+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.0
89+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
9090
with:
9191
name: coverage-test
9292
path: |
@@ -107,16 +107,16 @@ jobs:
107107
# disable-telemetry: true
108108

109109
- name: Checkout repository
110-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
110+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
111111

112112
- name: Restore Cache
113-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
113+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
114114
with:
115115
key: main
116116
path: '**'
117117

118118
- name: Setup Go environment
119-
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
119+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
120120
with:
121121
go-version-file: go.mod
122122
cache: false
@@ -133,7 +133,7 @@ jobs:
133133
run: E2E_INSTRUMENTATION=true make acceptance
134134

135135
- name: Upload acceptance coverage artifact
136-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.0
136+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
137137
with:
138138
name: coverage-acceptance
139139
path: ./coverage-acceptance.out
@@ -152,18 +152,18 @@ jobs:
152152

153153
# checkout is required for codecov to map the coverage data back to files in the repo
154154
- name: Checkout repository
155-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
155+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
156156
with:
157157
fetch-depth: 0
158158

159159
- name: Download test coverage artifacts
160-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
160+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
161161
with:
162162
name: coverage-test
163163
path: ./coverage
164164

165165
- name: Download acceptance coverage artifact
166-
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
166+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
167167
with:
168168
name: coverage-acceptance
169169
path: ./coverage
@@ -208,16 +208,16 @@ jobs:
208208
runs-on: ubuntu-latest
209209
steps:
210210
- name: Checkout repository
211-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
211+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
212212

213213
- name: Restore Cache
214-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
214+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
215215
with:
216216
key: main
217217
path: '**'
218218

219219
- name: Setup Go environment
220-
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
220+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
221221
with:
222222
go-version-file: go.mod
223223
cache: false

‎.github/workflows/codeql.yaml‎

Lines changed: 6 additions & 6 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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
56+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5757

5858
- name: Restore Cache
59-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
59+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
6060
with:
6161
key: main
6262
path: '**'
6363

6464
- name: Setup Go environment
65-
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
65+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
6666
with:
6767
go-version-file: go.mod
6868
cache: false
@@ -74,12 +74,12 @@ jobs:
7474
(cd acceptance && go mod download)
7575
7676
- name: Initialize CodeQL
77-
uses: github/codeql-action/init@45c373516f557556c15d420e3f5e0aa3d64366bc # v3.31.9
77+
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
7878
with:
7979
languages: ${{ matrix.language }}
8080

8181
- name: Autobuild
82-
uses: github/codeql-action/autobuild@45c373516f557556c15d420e3f5e0aa3d64366bc # v3.31.9
82+
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
8383

8484
- name: Perform CodeQL Analysis
85-
uses: github/codeql-action/analyze@45c373516f557556c15d420e3f5e0aa3d64366bc # v3.31.9
85+
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9

‎.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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
50+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5151
with:
5252
fetch-depth: 0
5353

5454
- name: Restore Cache
55-
uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
55+
uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
5656
with:
5757
key: main
5858
path: '**'
5959

6060
- name: Setup Go environment
61-
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
61+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
6262
with:
6363
go-version-file: go.mod
6464
cache: false
6565

6666
- name: Setup Node.js environment
67-
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
67+
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
6868
with:
6969
node-version-file: 'package.json'
7070

‎.github/workflows/release.yaml‎

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
swap-storage: false
8080

8181
- name: Checkout repository
82-
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
82+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
8383
with:
8484
fetch-depth: 0
8585

@@ -88,15 +88,15 @@ jobs:
8888
"${GITHUB_WORKSPACE}/hack/ubuntu-podman-update.sh"
8989
9090
- name: Cache
91-
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
91+
uses: actions/cache@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
9292
with:
9393
path: |
9494
~/.cache/go-build
9595
~/go/pkg/mod
9696
key: main
9797

9898
- name: Setup Go environment
99-
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
99+
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
100100
with:
101101
go-version-file: go.mod
102102
cache: false
@@ -170,7 +170,7 @@ jobs:
170170
uses: actions/configure-pages@983d7736d9b0ae728b81ab479565c72886d7745b # v5.0.0
171171

172172
- name: Upload statistics
173-
uses: actions/upload-pages-artifact@56afc609e74202658d3ffba0e8f6dda462b719fa # v3.0.1
173+
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
174174
with:
175175
path: stats
176176

‎.github/workflows/scorecard.yml‎

Lines changed: 3 additions & 3 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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
55+
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
5656
with:
5757
persist-credentials: false
5858

@@ -67,14 +67,14 @@ 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@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
70+
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7171
with:
7272
name: SARIF file
7373
path: results.sarif
7474
retention-days: 5
7575

7676
# Upload the results to GitHub's code scanning dashboard.
7777
- name: "Upload to code-scanning"
78-
uses: github/codeql-action/upload-sarif@45c373516f557556c15d420e3f5e0aa3d64366bc # v3.31.9
78+
uses: github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
7979
with:
8080
sarif_file: results.sarif

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

Lines changed: 5 additions & 5 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@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
33+
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
3434

35-
- uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
35+
- uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5.0.1
3636
with:
3737
key: main
3838
path: '**'
3939

40-
- uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0
40+
- uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
4141
with:
4242
go-version-file: go.mod
4343
cache: false
@@ -51,14 +51,14 @@ jobs:
5151
# https://github.com/golang/go/issues/45413
5252
GOPRIVATE: github.com/conforma/go-containerregistry
5353

54-
- uses: actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1.12.0
54+
- uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf # v2.2.1
5555
id: generate-token
5656
with:
5757
app-id: ${{ vars.EC_AUTOMATION_APP_ID }}
5858
private-key: ${{ secrets.EC_AUTOMATION_KEY }}
5959

6060
- name: pull-request
61-
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
61+
uses: peter-evans/create-pull-request@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
6262
with:
6363
add-paths: |
6464
go.mod

0 commit comments

Comments
 (0)