diff --git a/.github/workflows/docker-test.yml b/.github/workflows/docker-test.yml index 857847ca9..cce9fd7ea 100644 --- a/.github/workflows/docker-test.yml +++ b/.github/workflows/docker-test.yml @@ -45,7 +45,7 @@ jobs: 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 - name: Publish Artifacts if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-logs path: ./lib/logs diff --git a/.github/workflows/framework-codegen.yml b/.github/workflows/framework-codegen.yml index 4edd8cbba..0715cd90c 100644 --- a/.github/workflows/framework-codegen.yml +++ b/.github/workflows/framework-codegen.yml @@ -60,7 +60,7 @@ jobs: go test -timeout ${{ matrix.test.timeout }} -v -count ${{ matrix.test.count }} -run ${{ matrix.test.name }} - name: Upload Logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: container-logs-${{ matrix.test.name }} path: framework/logs diff --git a/.github/workflows/framework-dockercompose-tests.yml b/.github/workflows/framework-dockercompose-tests.yml index e7f22e5f4..4dbde6af3 100644 --- a/.github/workflows/framework-dockercompose-tests.yml +++ b/.github/workflows/framework-dockercompose-tests.yml @@ -102,7 +102,7 @@ jobs: - name: Upload Logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: container-logs-${{ matrix.test.name }} path: ${{ matrix.test.directory }}/logs diff --git a/.github/workflows/framework-golden-tests-private.yml b/.github/workflows/framework-golden-tests-private.yml index fd002b77b..d977d4f71 100644 --- a/.github/workflows/framework-golden-tests-private.yml +++ b/.github/workflows/framework-golden-tests-private.yml @@ -101,7 +101,7 @@ jobs: go test -timeout ${{ matrix.test.timeout }} -v -count ${{ matrix.test.count }} -run ${{ matrix.test.name }} - name: Upload Logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: container-logs-${{ matrix.test.name }} path: framework/examples/myproject/logs diff --git a/.github/workflows/framework-golden-tests.yml b/.github/workflows/framework-golden-tests.yml index a9d38e1d1..b51032879 100644 --- a/.github/workflows/framework-golden-tests.yml +++ b/.github/workflows/framework-golden-tests.yml @@ -110,7 +110,7 @@ jobs: go test -timeout ${{ matrix.test.timeout }} -v -count ${{ matrix.test.count }} -run ${{ matrix.test.name }} - name: Upload Logs if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: container-logs-${{ matrix.test.name }} path: framework/examples/myproject/logs diff --git a/.github/workflows/test-makefile.yml b/.github/workflows/test-makefile.yml index 7d6ef551f..3d463746a 100644 --- a/.github/workflows/test-makefile.yml +++ b/.github/workflows/test-makefile.yml @@ -34,7 +34,7 @@ jobs: make test_unit - name: Publish Artifacts if: failure() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-logs path: /tmp/gotest.log