Skip to content

Merge pull request #138 from pact-foundation/renovate/configure #174

Merge pull request #138 from pact-foundation/renovate/configure

Merge pull request #138 from pact-foundation/renovate/configure #174

Workflow file for this run

name: Audit
on:
workflow_dispatch:
push:
branches:
- master
schedule:
- cron: 0 0 * * 4 # Midnight Wednesday
jobs:
audit:
name: 👮 audit
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, ubuntu-24.04-arm ]
runs-on: ${{ matrix.os }}
env:
TAG: latest
steps:
- uses: actions/checkout@v4
- name: Audit Docker image for amd64
if: ${{ matrix.os == 'ubuntu-latest' }}
run: ./script/release-workflow/audit.sh
env:
DOCKER_TARGET_PLATFORM: linux/amd64
- name: Audit Docker image for arm64
if: ${{ matrix.os == 'ubuntu-24.04-arm' }}
run: ./script/release-workflow/audit.sh
env:
DOCKER_TARGET_PLATFORM: linux/arm64