Skip to content

build(deps-dev): Bump jsdom from 29.1.1 to 30.0.0 in /web #86

build(deps-dev): Bump jsdom from 29.1.1 to 30.0.0 in /web

build(deps-dev): Bump jsdom from 29.1.1 to 30.0.0 in /web #86

Workflow file for this run

name: CodeQL Advanced
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: "27 5 * * 2"
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ${{ matrix.runner }}
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
runner: avrea-ubuntu-latest-2-vcpu
- language: c-cpp
build-mode: none
runner: avrea-ubuntu-latest-2-vcpu
- language: go
build-mode: manual
runner: avrea-ubuntu-latest-2-vcpu
- language: javascript-typescript
build-mode: none
runner: avrea-ubuntu-latest-2-vcpu
steps:
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up Go
if: matrix.language == 'go'
uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0
with:
go-version-file: nnctl/go.mod
cache-dependency-path: nnctl/go.sum
- name: Initialize CodeQL
uses: github/codeql-action/init@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Run manual build steps
if: matrix.build-mode == 'manual'
working-directory: nnctl
run: go build ./...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
with:
category: "/language:${{ matrix.language }}"