Skip to content

Commit 8969cb4

Browse files
committed
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 <ry@linux.com>
1 parent 8279270 commit 8969cb4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/go.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
run: docker save --output firefly.tar.gz hyperledger/firefly
6161

6262
- name: Upload Docker image
63-
uses: actions/upload-artifact@v3
63+
uses: actions/upload-artifact@v4
6464
with:
6565
name: firefly-docker
6666
path: firefly.tar.gz
@@ -146,7 +146,7 @@ jobs:
146146
go-version: 1.22
147147

148148
- name: Download Docker image
149-
uses: actions/download-artifact@v3
149+
uses: actions/download-artifact@v4
150150
with:
151151
name: firefly-docker
152152

@@ -165,7 +165,7 @@ jobs:
165165
run: ./test/e2e/run.sh
166166

167167
- name: Archive container logs
168-
uses: actions/upload-artifact@v3
168+
uses: actions/upload-artifact@v4
169169
if: always()
170170
with:
171171
name: container-logs-${{ matrix.test-suite }}-${{ matrix.blockchain-provider }}-${{ matrix.blockchain-connector }}-${{ matrix.database-type }}-${{ matrix.token-provider }}

.github/workflows/integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
run: ./test/e2e/run.sh
7676

7777
- name: Archive container logs
78-
uses: actions/upload-artifact@v3
78+
uses: actions/upload-artifact@v4
7979
if: always()
8080
with:
8181
name: container-logs-${{ matrix.test-suite }}-${{ matrix.blockchain-node }}-${{ matrix.database-type }}
@@ -111,7 +111,7 @@ jobs:
111111
run: ./test/e2e/run.sh
112112

113113
- name: Archive container logs
114-
uses: actions/upload-artifact@v3
114+
uses: actions/upload-artifact@v4
115115
if: always()
116116
with:
117117
name: container-logs-TestEthereumV1MigrationE2ESuite-geth-postgres

doc-site/.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- uses: actions/setup-python@v4
2424
with:
2525
python-version: 3.x
26-
- uses: actions/cache@v2
26+
- uses: actions/cache@v4
2727
with:
2828
key: ${{ github.ref }}
2929
path: .cache

0 commit comments

Comments
 (0)