From 38a42e92c80dec1a18ccc3123b1f2df0d01cfcb6 Mon Sep 17 00:00:00 2001 From: Ry Jones Date: Wed, 8 Jan 2025 13:33:23 -0800 Subject: [PATCH] chore: update actions actions/upload-artifact and actions/download-artifact have been deprecated and need updated. https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/ Signed-off-by: Ry Jones --- .github/workflows/go.yml | 6 +++--- .github/workflows/integration.yml | 4 ++-- doc-site/.github/workflows/ci.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 74d832b7b3..b3a754fea4 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -60,7 +60,7 @@ jobs: run: docker save --output firefly.tar.gz hyperledger/firefly - name: Upload Docker image - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: firefly-docker path: firefly.tar.gz @@ -146,7 +146,7 @@ jobs: go-version: 1.22 - name: Download Docker image - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: firefly-docker @@ -165,7 +165,7 @@ jobs: run: ./test/e2e/run.sh - name: Archive container logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: container-logs-${{ matrix.test-suite }}-${{ matrix.blockchain-provider }}-${{ matrix.blockchain-connector }}-${{ matrix.database-type }}-${{ matrix.token-provider }} diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 91da3d7f16..cba43d3dfe 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -75,7 +75,7 @@ jobs: run: ./test/e2e/run.sh - name: Archive container logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: container-logs-${{ matrix.test-suite }}-${{ matrix.blockchain-node }}-${{ matrix.database-type }} @@ -111,7 +111,7 @@ jobs: run: ./test/e2e/run.sh - name: Archive container logs - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: always() with: name: container-logs-TestEthereumV1MigrationE2ESuite-geth-postgres diff --git a/doc-site/.github/workflows/ci.yml b/doc-site/.github/workflows/ci.yml index ddff3e16ed..e24cd9fa52 100644 --- a/doc-site/.github/workflows/ci.yml +++ b/doc-site/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - uses: actions/setup-python@v4 with: python-version: 3.x - - uses: actions/cache@v2 + - uses: actions/cache@v4 with: key: ${{ github.ref }} path: .cache