.github/workflows: update actions/upload-artifact to v4

This commit is contained in:
Manav Darji 2024-09-13 12:18:48 +05:30
parent 625e943fab
commit ef43467139
No known key found for this signature in database
GPG key ID: A426F0124435F36E
2 changed files with 5 additions and 5 deletions

View file

@ -107,7 +107,7 @@ jobs:
- name: Test - name: Test
run: make test run: make test
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v4
with: with:
name: unitTest-coverage name: unitTest-coverage
path: cover.out path: cover.out
@ -158,7 +158,7 @@ jobs:
- name: test-integration - name: test-integration
run: make test-integration run: make test-integration
- uses: actions/upload-artifact@v2 - uses: actions/upload-artifact@v4
with: with:
name: integrationTest-coverage name: integrationTest-coverage
path: cover.out path: cover.out
@ -258,7 +258,7 @@ jobs:
- name: Upload logs - name: Upload logs
if: always() if: always()
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: logs_${{ github.run_id }} name: logs_${{ github.run_id }}
path: | path: |
@ -277,7 +277,7 @@ jobs:
- name: Upload code and chain data - name: Upload code and chain data
if: always() if: always()
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: code_${{ github.run_id }} name: code_${{ github.run_id }}
path: code.tar.gz path: code.tar.gz

View file

@ -19,7 +19,7 @@ jobs:
fail-on-vuln: true fail-on-vuln: true
- name: Upload govulncheck report - name: Upload govulncheck report
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v4
with: with:
name: raw-report name: raw-report
path: raw-report.json path: raw-report.json