Skip to content

Commit

Permalink
use ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
arturcic committed Jan 8, 2025
1 parent 6f7e52f commit a6f0c90
Show file tree
Hide file tree
Showing 12 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-15]
os: [windows-latest, ubuntu-24.04, macos-15]

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_docker_manifests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:
jobs:
manifest:
name: ${{ matrix.dockerDistro }} - net${{ matrix.dotnetVersion }}
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-15]
os: [windows-latest, ubuntu-24.04, macos-15]

runs-on: ${{ matrix.os }}
steps:
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
set_matrix:
needs: [ prepare ]
name: Set Matrix
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
outputs:
dockerDistros: ${{ steps.set_matrix.outputs.dockerDistros }}
dotnetVersions: ${{ steps.set_matrix.outputs.dotnetVersions }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-15]
os: [windows-latest, ubuntu-24.04, macos-15]
dotnetVersion: ${{ fromJson(inputs.dotnetVersions) }}

runs-on: ${{ matrix.os }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ jobs:
matrix:
include:
- arch: amd64
runner: ubuntu-latest
runner: ubuntu-24.04
- arch: arm64
runner: ubuntu-latest
runner: ubuntu-24.04
uses: ./.github/workflows/_artifacts_linux.yml
with:
runner: ${{ matrix.runner }}
Expand All @@ -88,9 +88,9 @@ jobs:
matrix:
include:
- arch: amd64
runner: ubuntu-latest
runner: ubuntu-24.04
- arch: arm64
runner: ubuntu-latest
runner: ubuntu-24.04

uses: ./.github/workflows/_docker.yml
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
contents: read # for actions/checkout to fetch code
security-events: write # for github/codeql-action/analyze to upload SARIF results
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

strategy:
fail-fast: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ env:
jobs:
prepare:
name: Prepare Build
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

steps:
-
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
validate:
name: Validates Html
needs: [ prepare ]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
-
name: Checkout
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
publish:
name: Publish docs
needs: [ validate ]
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
GITHUB_TOKEN: ${{ secrets.RELEASE_GITHUB_TOKEN }}
GITHUB_USERNAME: ${{ github.actor }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ env:

jobs:
format:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
name: DotNet Format
steps:
-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ defaults:
jobs:
docs:
name: Update Markdown (embedded snippets)
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
-
name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
release:
name: Trigger ci flow
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
-
name: Checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:

jobs:
stale:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/stale@v9
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/winget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
permissions:
contents: none
name: Bump winget manifest
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Get version
id: get-version
Expand Down

0 comments on commit a6f0c90

Please sign in to comment.