Skip to content

Update actions/checkout action to v4.2.0 #558

Update actions/checkout action to v4.2.0

Update actions/checkout action to v4.2.0 #558

Workflow file for this run

name: Test the rego
on: [push]
jobs:
test-rego:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- name: Get OPA
run: |
wget --quiet -O /tmp/opa https://github.com/open-policy-agent/opa/releases/download/v0.28.0/opa_linux_amd64
chmod +x /tmp/opa
- name: Test
run: /tmp/opa test *.rego -v --explain full
- name: Coverage
run: /tmp/opa test --coverage --format=json *.rego