Skip to content

Commit

Permalink
ci: Pin dotnet and codgen workflows to Ubuntu 22.04 (#348)
Browse files Browse the repository at this point in the history
- Dotnet workflows failing on Ubuntu 24.04 (now ubuntu-latest)
  • Loading branch information
kieran-ryan authored Jan 4, 2025
1 parent d0d7a26 commit 9526c8a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release-nuget.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ on:
jobs:
publish-nuget:
name: Publish package to NuGet.org
runs-on: ubuntu-latest
# Failing on `ubuntu-24.04` (https://github.com/cucumber/gherkin/issues/349)
runs-on: ubuntu-22.04
environment: Release
steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-codegen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ on:

jobs:
test-codegen:
runs-on: ubuntu-latest
# Failing on `ubuntu-24.04` (https://github.com/cucumber/gherkin/issues/349)
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/test-dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ on:

jobs:
test-dotnet:
runs-on: ubuntu-latest
# Failing on `ubuntu-24.04` (https://github.com/cucumber/gherkin/issues/349)
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
Expand Down

0 comments on commit 9526c8a

Please sign in to comment.