Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): Bump actions/download-artifact from 3 to 4 #681

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download binary artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
id: download
with:
name: cheqd-noded
Expand All @@ -117,7 +117,7 @@ jobs:
run: sudo chmod +x ${{ env.RUNNER_BIN_DIR }}/cheqd-noded

- name: Download node Docker image
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cheqd-node-build.tar

Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:
# run: go install github.com/onsi/ginkgo/v2/ginkgo@latest

# - name: Download new version of the Docker image (build-latest)
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: cheqd-node-build.tar

Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
# path: report-post-upgrade.xml

# - name: Download binary artifact (build-latest)
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# id: download
# with:
# name: cheqd-noded
Expand Down Expand Up @@ -305,37 +305,37 @@ jobs:
- uses: actions/checkout@v4

- name: Download unit test
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: report-unit.xml

- name: Download integration test report
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: report-integration.xml

# - name: Download pre-upgrade test Report
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: report-pre-upgrade.xml

# - name: Download post-upgrade test Report
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: report-post-upgrade.xml

# - name: Download upgraded integration test Report
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: report-upgraded-integration.xml

# - name: Download pricing proposal test Report
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: report-pricing-proposal.xml

# - name: Download pricing change test Report
# uses: actions/download-artifact@v3
# uses: actions/download-artifact@v4
# with:
# name: report-pricing-change.xml

Expand Down