Skip to content

chore(deps): bump anchore/workflows/.github/workflows/codeql.yaml from 0.7.2 to 0.8.0 #294

chore(deps): bump anchore/workflows/.github/workflows/codeql.yaml from 0.7.2 to 0.8.0

chore(deps): bump anchore/workflows/.github/workflows/codeql.yaml from 0.7.2 to 0.8.0 #294

Workflow file for this run

name: "Validations"
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
permissions: {}
jobs:
Static-Analysis:
# Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline
name: "Static analysis"
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
# setup checkout, go, go-make, binny, and cache go modules
- uses: anchore/go-make/.github/actions/setup@39fe5f71112d4dceb3ff0a92a40f272f067fc457 # v0.6.0
- name: Run static analysis
run: make static-analysis
Unit-Test:
# Note: changing this job name requires making the same update in the .github/workflows/release.yaml pipeline
name: "Unit tests"
runs-on: ubuntu-24.04
permissions:
contents: read
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
lfs: true
persist-credentials: false
- name: Checkout LFS objects
run: git lfs checkout
# setup go, go-make, binny, and cache go modules
- uses: anchore/go-make/.github/actions/setup@39fe5f71112d4dceb3ff0a92a40f272f067fc457 # v0.6.0
- name: Run unit tests
run: make unit
- uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: unit-test-results
path: test/results/**/*