Skip to content

Commit

Permalink
ci: use pinned Ubuntu 22.04 image for tests (fixes ICU missing and mo…
Browse files Browse the repository at this point in the history
…no not being available)
  • Loading branch information
skwasjer committed Dec 18, 2024
1 parent d2538fe commit a96db00
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
strategy:
matrix:
os:
- ubuntu-latest
- ubuntu-22.04
- windows-latest
- macos-13
fail-fast: false
Expand All @@ -121,9 +121,9 @@ jobs:

# Run all tests
- run: dotnet test --no-restore --no-build -c Release -- xUnit.AppDomain=denied
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-22.04'
- run: dotnet test --no-restore --no-build -c Release --filter Category!=PublicApi -- xUnit.AppDomain=denied
if: matrix.os != 'ubuntu-latest'
if: matrix.os != 'ubuntu-22.04'

pack:
needs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

analysis:
needs: authorize
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/setup-dotnet@v4
with:
Expand Down

0 comments on commit a96db00

Please sign in to comment.