Skip to content

Commit 814e050

Browse files
Bump actions/upload-artifact from 4.3.3 to 4.5.0
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4.3.3 to 4.5.0. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@6546280...6f51ac0) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent fb2682c commit 814e050

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/docker-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
go test -timeout 20m -json -parallel 2 -cover -covermode=atomic -coverprofile=unit-test-coverage.out $(go list ./... | grep /docker/test_env) -run '${{ matrix.test.tests }}' 2>&1 | tee /tmp/gotest.log | ../gotestloghelper -ci
4545
- name: Publish Artifacts
4646
if: failure()
47-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
47+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
4848
with:
4949
name: test-logs
5050
path: ./lib/logs

.github/workflows/k8s-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }}
100100
run_setup: false
101101
- name: Upload test log
102-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
102+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
103103
if: failure()
104104
with:
105105
name: test-log
@@ -147,7 +147,7 @@ jobs:
147147
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }}
148148
run_setup: false
149149
- name: Upload test log
150-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
150+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
151151
if: failure()
152152
with:
153153
name: remote-runner-test-log

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ jobs:
7878
run: test -f ${{ matrix.project.path }}golangci-lint-report.xml || true
7979
- name: Store lint report artifact
8080
if: always()
81-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
81+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
8282
with:
8383
name: golangci-lint-report-${{ matrix.project.name }}
8484
path: ${{ matrix.project.path }}golangci-lint-report.xml

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
make test_unit"
5151
- name: Publish Artifacts
5252
if: failure()
53-
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
53+
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
5454
with:
5555
name: test-logs
5656
path: /tmp/gotest.log

0 commit comments

Comments
 (0)