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 @@ -37,7 +37,7 @@ jobs:
# - https://gh.io/using-larger-runners (GitHub.com only)
# Consider using larger runners or machines with greater resources
# for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-14') || 'ubuntu-24.04' }}
runs-on: ${{ (matrix.language == 'swift' && 'macos-26') || 'ubuntu-26.04' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
# required for all workflows
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ env:
jobs:
build:
name: "Build Docker images"
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7

Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/dotnet-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,16 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["windows-2022", "windows-2025", "ubuntu-24.04", "macos-14"]
dotnet-version: [9.0.x, 10.0.x]
os:
- "windows-2022"
- "windows-2025"
- "ubuntu-24.04"
- "ubuntu-26.04"
- "macos-15"
- "macos-15-intel"
- "macos-26"
- "macos-26-intel"
dotnet-version: [8.0.x, 9.0.x, 10.0.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
Expand Down
29 changes: 26 additions & 3 deletions .github/workflows/dotnet-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,38 @@ jobs:
strategy:
fail-fast: false
matrix:
os: ["windows-2022", "windows-2025", "ubuntu-24.04", "macos-14"]
dotnet-version: [9.0.x, 10.0.x]
os:
- "windows-2022"
- "windows-2025"
- "ubuntu-24.04"
- "ubuntu-26.04"
- "macos-15"
- "macos-15-intel"
- "macos-26"
- "macos-26-intel"
dotnet-version: [8.0.x, 9.0.x, 10.0.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Setup .NET ${{ matrix.dotnet-version }}
- id: setup-dotnet
name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v6
with:
dotnet-version: ${{ matrix.dotnet-version }}
# FIX: Dynamically generate global.json so the CLI doesn't default
# to the highest pre-installed version
- name: Enforce Matrix .NET SDK Version
shell: bash
run: |
cat <<'EOF' > ./global.json
{
"sdk": {
"version": "${{ steps.setup-dotnet.outputs.dotnet-version }}",
"rollForward": "latestPatch"
}
}
EOF

- name: Tooling check
run: >
dotnet --version
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-24.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
jobs:
markdownlint:
name: Markdown Lint
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

steps:
- name: Checkout repository
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/yamllint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,9 @@ jobs:
with:
python-version: 3.14

- name: Install pipenv
run: >
sudo apt install pipenv
- name: Install yamllint
run: >
pipenv sync --dev
run: |
pip install --only-binary :all: yamllint==1.38.0

- name: Lint YAML files
run: >
Expand Down
12 changes: 0 additions & 12 deletions Pipfile

This file was deleted.

117 changes: 0 additions & 117 deletions Pipfile.lock

This file was deleted.

Loading