Skip to content

Commit 9526c8a

Browse files
authored
ci: Pin dotnet and codgen workflows to Ubuntu 22.04 (#348)
- Dotnet workflows failing on Ubuntu 24.04 (now ubuntu-latest)
1 parent d0d7a26 commit 9526c8a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/release-nuget.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ on:
88
jobs:
99
publish-nuget:
1010
name: Publish package to NuGet.org
11-
runs-on: ubuntu-latest
11+
# Failing on `ubuntu-24.04` (https://github.com/cucumber/gherkin/issues/349)
12+
runs-on: ubuntu-22.04
1213
environment: Release
1314
steps:
1415
- uses: actions/checkout@v4

.github/workflows/test-codegen.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ on:
1212

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

1718
steps:
1819
- uses: actions/checkout@v4

.github/workflows/test-dotnet.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ on:
2020

2121
jobs:
2222
test-dotnet:
23-
runs-on: ubuntu-latest
23+
# Failing on `ubuntu-24.04` (https://github.com/cucumber/gherkin/issues/349)
24+
runs-on: ubuntu-22.04
2425
steps:
2526
- uses: actions/checkout@v4
2627
- uses: actions/setup-dotnet@v4

0 commit comments

Comments
 (0)