Skip to content

Commit

Permalink
actions/upload-artifact upgraded to use v4
Browse files Browse the repository at this point in the history
  • Loading branch information
biplamal authored Sep 18, 2024
1 parent decc19a commit 2777454
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
chmod u+x ./ci.sh
./ci.sh gen_artifacts
- uses: actions/upload-artifact@master
- uses: actions/upload-artifact@v4
with:
name: release-artifact
path: release/
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
./ci.sh run_test b2b
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: b2b
path: tests/logs-b2b
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
./ci.sh run_test dut
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dut
path: tests/logs-dut
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
./ci.sh run_test lag
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: lag
path: tests/logs-lag
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
./ci.sh run_test license
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: license
path: tests/logs-license
Expand Down Expand Up @@ -283,7 +283,7 @@ jobs:
./ci.sh run_test liveness
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: liveness
path: tests/logs-liveness
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:
./ci.sh run_test miscellaneous
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: miscellaneous
path: tests/logs-miscellaneous
Expand Down Expand Up @@ -373,7 +373,7 @@ jobs:
./ci.sh run_test negative
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: negative
path: tests/logs-negative
Expand Down Expand Up @@ -419,7 +419,7 @@ jobs:
./ci.sh run_test performance
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: performance
path: tests/logs-performance
Expand Down Expand Up @@ -465,7 +465,7 @@ jobs:
./ci.sh run_test resource
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: resource
path: tests/logs-resource
Expand Down Expand Up @@ -511,7 +511,7 @@ jobs:
./ci.sh run_test rest
- name: Archive logs
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: rest
path: tests/logs-rest
Expand Down Expand Up @@ -571,4 +571,4 @@ jobs:
artifacts: "release/*"
tag: ${{ steps.get_version.outputs.version }}
token: ${{ secrets.ENV_GITHUB_PAT }}
commit: ${{ github.sha }}
commit: ${{ github.sha }}

0 comments on commit 2777454

Please sign in to comment.