From ee39206235730172a157b4d1205df878f5a1ec45 Mon Sep 17 00:00:00 2001 From: Simar Date: Tue, 5 Dec 2023 22:43:41 -0700 Subject: [PATCH] pin opa version to v0.58.0 See: https://github.com/open-policy-agent/opa/issues/6457 --- .github/actions/setup-opa/action.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/setup-opa/action.yaml b/.github/actions/setup-opa/action.yaml index 4079d7c5..afd2201b 100644 --- a/.github/actions/setup-opa/action.yaml +++ b/.github/actions/setup-opa/action.yaml @@ -3,11 +3,11 @@ description: Setup OPA CLI runs: using: composite steps: - - name: Setup OPA + - name: Setup OPA v0.58.0 shell: bash run: | - curl --retry 3 -L -o opa_linux_amd64_static https://github.com/open-policy-agent/opa/releases/latest/download/opa_linux_amd64_static - curl -L -o checksum https://github.com/open-policy-agent/opa/releases/latest/download/opa_linux_amd64_static.sha256 + curl --retry 3 -L -o opa_linux_amd64_static https://github.com/open-policy-agent/opa/releases/download/v0.58.0/opa_linux_amd64_static + curl -L -o checksum https://github.com/open-policy-agent/opa/releases/download/v0.58.0/opa_linux_amd64_static.sha256 sha256sum -c checksum chmod 755 ./opa_linux_amd64_static sudo mv ./opa_linux_amd64_static /usr/local/bin/opa