Skip to content

[ci]: update build-dockerfile.yml to use the native ARM runners #12

[ci]: update build-dockerfile.yml to use the native ARM runners

[ci]: update build-dockerfile.yml to use the native ARM runners #12

Workflow file for this run

# Copyright (C) 2025 Roberto Rossini <[email protected]>
# SPDX-License-Identifier: MIT
name: Run CodeQL analysis (actions)
on:
push:
branches: [main]
paths:
- ".github/workflows/*.yml"
pull_request:
paths:
- ".github/workflows/*.yml"
schedule:
- cron: "0 5 1 * *" # run monthly at 05:00
# https://stackoverflow.com/a/72408109
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
analyze:
name: Analyze (actions)
runs-on: ubuntu-24.04
permissions:
contents: read
security-events: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
with:
languages: actions
build-mode: none
- name: Run Analysis
uses: github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
with:
category: "/language:actions"