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

Bump actions/download-artifact from 3.0.2 to 4.1.0 #122

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
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -229,26 +229,26 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
steps:
# Downloads java test report files
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Core"
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Postgres"
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Sqlserver"
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Oracle"

# Net reports were zipped under a different root, specifies the path.
# Modifies the namespaces to allow differentiate from the java test results
- uses: actions/download-artifact@v3.0.2
- uses: actions/download-artifact@v4.1.0
if: always()
with:
name: "test-report-files-Net"
Expand Down
Loading