chore(deps): update actions/upload-artifact action to v4 - autoclosed #339
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: opa-koans | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Shell Lint | |
run: sh scripts/shellLint.sh | |
- name: Yaml Lint | |
run: sh scripts/yamlLint.sh | |
- name: Rego Lint | |
run: sh scripts/regoLint.sh | |
- name: Rego Test | |
run: sh scripts/regoTest.sh | |
- name: Wasm Verify | |
run: sh scripts/wasmVerify.sh | |
- name: Bundle Benchmark | |
run: sh scripts/benchstat.sh | |
- name: Upload Benchmark stat file | |
uses: actions/upload-artifact@v4 | |
with: | |
name: bench.txt | |
path: bundle/{*.txt|bench.html} | |
- name: Bundle Verify | |
run: sh scripts/bundleVerify.sh |