Skip to content

chore(deps): update dependency sqlite3 to v2.9.4 #393

chore(deps): update dependency sqlite3 to v2.9.4

chore(deps): update dependency sqlite3 to v2.9.4 #393

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@v5
- name: Manual Trivy Setup
uses: aquasecurity/setup-trivy@ve07451d2e059ed86c2870430ea286b3a9e0bf241 #v0.2.6
with:
cache: true
- 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