Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Unit Test CLI
run: go test -v -tags="${{ matrix.tags }}" ./...

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: cli
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,15 @@ jobs:
run: ./okms keys ls -d -c okms.yaml
- name: Execute tests
run: make -C tests
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: test_results
path: |
./tests/out/test_results.html
./tests/out/venom.log
retention-days: 5
if: always()
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: coverage
path: |
Expand Down Expand Up @@ -98,15 +98,15 @@ jobs:
run: ./okms keys ls -d -c okms.yaml
- name: Execute tests
run: make -C tests
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: test_results_preprod
path: |
./tests/out/test_results.html
./tests/out/venom.log
retention-days: 5
if: always()
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: coverage-preprod
path: |
Expand Down