Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on: # yamllint disable-line rule:truthy
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

build:
name: "Build Docker images"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4

Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:

lint:
name: "Run in docker: LINT"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- name: Download artifact
Expand All @@ -93,7 +93,7 @@ jobs:

test:
name: "Run in docker: TEST"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
steps:
- name: Download artifact
Expand All @@ -113,7 +113,7 @@ jobs:

security:
name: "Snyk Container"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
permissions:
actions: read
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
sarif_file: 'snyk.sarif'
scan:
name: "Trivy"
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
needs: build
permissions:
actions: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on: # yamllint disable-line rule:truthy
jobs:
scan:
name: gitleaks
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ on: # yamllint disable-line rule:truthy
branches: ["main"]
workflow_dispatch:

permissions: read-all

jobs:
build:
runs-on: ubuntu-latest
markdownlint:
name: Markdown Lint
runs-on: ubuntu-24.04

strategy:
matrix:
node-version: [20.x]
node-version: [22.x]
# See supported Node.js release schedule
# at https://nodejs.org/en/about/releases/

Expand All @@ -31,9 +34,6 @@ jobs:
- name: Install dependencies
run: npm install -g markdownlint-cli

- name: Version
run: markdownlint --version

- name: Lint
run: >
markdownlint '**/*.md' --ignore node_modules
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ env:
LOG_LEVEL: INFO

jobs:
build:
name: "Run CI"
coverage:
name: "Python CI Coverage"
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
os: ["ubuntu-24.04"]
python: ["3.12"]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["windows-latest", "ubuntu-latest", "macOS-latest"]
os: ["ubuntu-24.04", "macos-14", "windows-2022"]
python: ["3.10", "3.11", "3.12"]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on: # yamllint disable-line rule:truthy

jobs:
security:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@master
- name: Run Snyk to check for vulnerabilities
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ on: # yamllint disable-line rule:truthy

jobs:
lint:
runs-on: ubuntu-latest
name: YAML lint
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
Expand Down
Loading