Skip to content

update outdated-api policy #4

update outdated-api policy

update outdated-api policy #4

name: update outdated-api policy
on:
workflow_dispatch: {}
schedule:
- cron: "0 0 * * 0" # Sunday midnight
permissions:
contents: write
env:
GH_USER: aqua-bot
GO_VERSION: "1.18"
jobs:
outdated:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.AUTO_COMMIT_TOKEN }}
- name: Fetch outdated API data from trivy-db-data repo
id: outdatedapi
uses: fjogeleit/http-request-action@v1
with:
url: 'https://raw.githubusercontent.com/aquasecurity/trivy-db-data/main/k8s/api/k8s-outdated-api.json'
method: 'GET'
- name: embed outdatedapi-data with in dynamic rego policy
env:
OUTDATE_API_DATA: ${{ toJson(steps.outdatedapi.outputs.response) }}
run: |
make outdated-api-updated
- name: Setup OPA
run: |
curl -L -o opa https://openpolicyagent.org/downloads/latest/opa_linux_amd64
chmod 755 ./opa
sudo mv ./opa /usr/local/bin
- name: OPA Format
run: |
opa fmt -w . | grep -v vendor || true
- name: commit and push updated outdated-api policy when changes found
uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: Update outdated-api policy data
push_options: --force