Skip to content

Commit 00d262d

Browse files
committed
Update upload artifact
1 parent af6f589 commit 00d262d

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

.github/workflows/docker-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
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
4747
- name: Publish Artifacts
4848
if: failure()
49-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
49+
uses: actions/upload-artifact@v4
5050
with:
5151
name: test-logs
5252
path: ./lib/logs

.github/workflows/framework-golden-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
go test -timeout ${{ matrix.test.timeout }} -v -count ${{ matrix.test.count }} -run ${{ matrix.test.name }}
105105
- name: Upload Logs
106106
if: always()
107-
uses: actions/upload-artifact@v3
107+
uses: actions/upload-artifact@v4
108108
with:
109109
name: container-logs-${{ matrix.test.name }}
110110
path: framework/examples/myproject/logs

.github/workflows/generate-go-docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
rm filtered_folders.json
124124
125125
- name: Upload costs as artifact
126-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
126+
uses: actions/upload-artifact@v4
127127
with:
128128
name: generation-costs
129129
path: ./costs

.github/workflows/k8s-e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
9999
run_setup: false
100100
- name: Upload test log
101-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
101+
uses: actions/upload-artifact@v4
102102
if: failure()
103103
with:
104104
name: test-log
@@ -146,7 +146,7 @@ jobs:
146146
QA_KUBECONFIG: ${{ secrets.QA_KUBECONFIG }}
147147
run_setup: false
148148
- name: Upload test log
149-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
149+
uses: actions/upload-artifact@v4
150150
if: failure()
151151
with:
152152
name: remote-runner-test-log

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ jobs:
100100
run: test -f ${{ matrix.project.path }}golangci-lint-report.xml || true
101101
- name: Store lint report artifact
102102
if: always()
103-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
103+
uses: actions/upload-artifact@v4
104104
with:
105105
name: golangci-lint-report-${{ matrix.project.name }}
106106
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
@@ -54,7 +54,7 @@ jobs:
5454
make test_unit"
5555
- name: Publish Artifacts
5656
if: failure()
57-
uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
57+
uses: actions/upload-artifact@v4
5858
with:
5959
name: test-logs
6060
path: /tmp/gotest.log

0 commit comments

Comments
 (0)