From fc01eff62f7e3781e229e2f2f08159371c2b9c8b Mon Sep 17 00:00:00 2001 From: David Dworken Date: Sun, 2 Feb 2025 10:03:46 -0800 Subject: [PATCH] Upgrade GH actions for https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ --- .github/workflows/go-test.yml | 6 +++--- .github/workflows/slsa-releaser.yml | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index c54aeff..d476981 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -82,19 +82,19 @@ jobs: # Add an extra short delay to allow datadog to flush metrics sleep 90 - name: Upload test results json - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: success() || failure() with: name: test-results-${{ matrix.os }}-${{ matrix.test_shard }}.json path: /tmp/testrun.json - name: Upload failed test goldens - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: success() || failure() with: name: test-goldens-${{ matrix.os }}-${{ matrix.test_shard }}.zip path: /tmp/test-goldens/ - name: Upload test log - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: success() || failure() with: name: testlog-${{ matrix.os }}-${{ matrix.test_shard }}.txt diff --git a/.github/workflows/slsa-releaser.yml b/.github/workflows/slsa-releaser.yml index ab14c94..a65fcd6 100644 --- a/.github/workflows/slsa-releaser.yml +++ b/.github/workflows/slsa-releaser.yml @@ -140,22 +140,22 @@ jobs: brew install coreutils python3 scripts/actions-sign.py - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: hishtory-darwin-arm64 path: hishtory-darwin-arm64 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: hishtory-darwin-amd64 path: hishtory-darwin-amd64 - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: hishtory-darwin-arm64-unsigned path: hishtory-darwin-arm64-unsigned - name: Upload Artifacts - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: hishtory-darwin-amd64-unsigned path: hishtory-darwin-amd64-unsigned