Skip to content

Commit 533b7d5

Browse files
build(deps): bump actions/upload-artifact in the actions group
Bumps the actions group with 1 update: [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/upload-artifact` from 4.4.3 to 4.5.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@b4b15b8...6f51ac0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2d5b737 commit 533b7d5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
key: go-test-binaries-${{ matrix.run.arch }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('test') }}
3939
- run: scripts/github-actions-packages
4040
- run: make all test-binaries
41-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
41+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
4242
with:
4343
name: test-binaries-${{ matrix.run.arch }}
4444
path: |

.github/workflows/osff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5656
# format to the repository Actions tab.
5757
- name: "Upload artifact"
58-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
58+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5959
with:
6060
name: SARIF file
6161
path: results.sarif

.github/workflows/scorecards.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5656
# format to the repository Actions tab.
5757
- name: "Upload artifact"
58-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
58+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5959
with:
6060
name: SARIF file
6161
path: results.sarif

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,19 +27,19 @@ jobs:
2727
- run: bin/crio version
2828
- run: make bin/crio.cross.linux.amd64
2929
- run: bin/crio.cross.linux.amd64 version
30-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
30+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
3131
with:
3232
name: build
3333
path: |
3434
bin/crio
35-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
35+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
3636
with:
3737
name: docs
3838
path: |
3939
docs/crio.8
4040
docs/crio.conf.5
4141
docs/crio.conf.d.5
42-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
42+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
4343
with:
4444
name: config
4545
path: crio.conf
@@ -124,7 +124,7 @@ jobs:
124124
pushFilter: cri-o
125125
- run: nix-build nix/default-${{ matrix.run.go-arch }}.nix
126126
- run: file result/bin/crio | grep ${{ matrix.run.os-arch }}
127-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
127+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
128128
with:
129129
name: build-static-${{ matrix.run.go-arch }}
130130
path: |
@@ -229,7 +229,7 @@ jobs:
229229
- name: Run unit tests rootless
230230
if: ${{ matrix.run.type == 'rootless' }}
231231
run: make testunit
232-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
232+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
233233
with:
234234
name: unit-${{ matrix.run.arch }}-${{ matrix.run.type }}
235235
path: build/coverage
@@ -272,7 +272,7 @@ jobs:
272272
- run: make release-notes
273273
env:
274274
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
275-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
275+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
276276
with:
277277
name: release-notes
278278
path: build/release-notes
@@ -294,7 +294,7 @@ jobs:
294294
- run: make dependencies
295295
env:
296296
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
297-
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
297+
- uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
298298
with:
299299
name: dependencies
300300
path: build/dependencies

0 commit comments

Comments
 (0)