Skip to content

Commit

Permalink
chore: update actions
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
ryjones committed Jan 8, 2025
1 parent cc059e6 commit 7e5c544
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
lint: # Run lint script for all workspaces
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "16.15.0"
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "16.15.0"
Expand All @@ -40,7 +40,7 @@ jobs:
run:
working-directory: ./fabric/chaincode/datalock
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-go@v3
with:
go-version: "1.18"
Expand All @@ -67,7 +67,7 @@ jobs:
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "16.15.0"
Expand Down Expand Up @@ -105,7 +105,7 @@ jobs:
ports:
- 5432:5432
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: "16.15.0"
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
- name: Collect Docker Logs
if: failure()
uses: jwalton/[email protected]
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
Expand Down

0 comments on commit 7e5c544

Please sign in to comment.