mirror of
https://github.com/docker/setup-qemu-action.git
synced 2026-04-08 06:56:37 +00:00
Merge pull request #256 from crazy-max/codeql
Some checks failed
codeql / analyze (push) Has been cancelled
test / test (push) Has been cancelled
validate / prepare (push) Has been cancelled
validate / validate (push) Has been cancelled
ci / default (push) Failing after -1s
ci / main (tonistiigi/binfmt:latest, all) (push) Failing after -2s
ci / main (tonistiigi/binfmt:latest, arm64,riscv64,arm) (push) Failing after -2s
ci / main (tonistiigi/binfmt:master, all) (push) Failing after -1s
ci / main (tonistiigi/binfmt:master, arm64,riscv64,arm) (push) Failing after -2s
ci / error (push) Failing after -2s
ci / cache-image (false) (push) Failing after -2s
ci / cache-image (true) (push) Failing after -2s
ci / version (tonistiigi/binfmt:latest) (push) Failing after -2s
ci / version (tonistiigi/binfmt:master) (push) Failing after -2s
ci / version (tonistiigi/binfmt:qemu-v7.0.0) (push) Failing after -2s
Some checks failed
codeql / analyze (push) Has been cancelled
test / test (push) Has been cancelled
validate / prepare (push) Has been cancelled
validate / validate (push) Has been cancelled
ci / default (push) Failing after -1s
ci / main (tonistiigi/binfmt:latest, all) (push) Failing after -2s
ci / main (tonistiigi/binfmt:latest, arm64,riscv64,arm) (push) Failing after -2s
ci / main (tonistiigi/binfmt:master, all) (push) Failing after -1s
ci / main (tonistiigi/binfmt:master, arm64,riscv64,arm) (push) Failing after -2s
ci / error (push) Failing after -2s
ci / cache-image (false) (push) Failing after -2s
ci / cache-image (true) (push) Failing after -2s
ci / version (tonistiigi/binfmt:latest) (push) Failing after -2s
ci / version (tonistiigi/binfmt:master) (push) Failing after -2s
ci / version (tonistiigi/binfmt:qemu-v7.0.0) (push) Failing after -2s
ci: enable SAST scanning with CodeQL
This commit is contained in:
commit
6632d370ea
45
.github/workflows/codeql.yml
vendored
Normal file
45
.github/workflows/codeql.yml
vendored
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
name: codeql
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- 'master'
|
||||||
|
- 'releases/v*'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
actions: read
|
||||||
|
contents: read
|
||||||
|
security-events: write
|
||||||
|
|
||||||
|
env:
|
||||||
|
NODE_VERSION: "24"
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
analyze:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
-
|
||||||
|
name: Checkout
|
||||||
|
uses: actions/checkout@v6
|
||||||
|
-
|
||||||
|
name: Enable corepack
|
||||||
|
run: |
|
||||||
|
corepack enable
|
||||||
|
yarn --version
|
||||||
|
-
|
||||||
|
name: Set up Node
|
||||||
|
uses: actions/setup-node@v6
|
||||||
|
with:
|
||||||
|
node-version: ${{ env.NODE_VERSION }}
|
||||||
|
-
|
||||||
|
name: Initialize CodeQL
|
||||||
|
uses: github/codeql-action/init@v4
|
||||||
|
with:
|
||||||
|
languages: javascript-typescript
|
||||||
|
build-mode: none
|
||||||
|
-
|
||||||
|
name: Perform CodeQL Analysis
|
||||||
|
uses: github/codeql-action/analyze@v4
|
||||||
|
with:
|
||||||
|
category: "/language:javascript-typescript"
|
||||||
Loading…
Reference in New Issue
Block a user