Skip to content
Open
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/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ jobs:
TARGET_BRANCH: ${{ needs.prepare.outputs.changes-target-branch }}
- name: upload unit test results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: unit-test-results
path: target/junit-reports/unit-test.xml
Expand Down Expand Up @@ -574,7 +574,7 @@ jobs:
SCCACHE_AWS_SECRET_ACCESS_KEY: ${{ secrets.ENV_DIEM_S3_AWS_SECRET_ACCESS_KEY }}
- name: upload unit test results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: unit-test-results
path: target/junit-reports/unit-test.xml
Expand Down Expand Up @@ -606,7 +606,7 @@ jobs:
TARGET_BRANCH: ${{ needs.prepare.outputs.changes-target-branch }}
- name: upload codegen test results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: codegen-unit-test-results
path: target/junit-reports/codegen-unit-test.xml
Expand Down Expand Up @@ -641,7 +641,7 @@ jobs:
SCCACHE_AWS_SECRET_ACCESS_KEY: ${{ secrets.ENV_DIEM_S3_AWS_SECRET_ACCESS_KEY }}
- name: upload codegen test results
if: always()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: codegen-unit-test-results
path: target/junit-reports/codegen-unit-test.xml
Expand Down Expand Up @@ -939,7 +939,7 @@ jobs:
# Replace this with a cargo x bench
cargo bench --package language-benchmarks
- name: Archive criterion results
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: bench-baseline
retention-days: 5
Expand Down