Skip to content

Commit 6ad422a

Browse files
committed
Update all workflows to run on ubuntu-22.04
Ubuntu-latest at the moment does not include Mono, so pin to 22 until thats fixed
1 parent 6e54a6b commit 6ad422a

9 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ defaults:
3737

3838
jobs:
3939
build:
40-
runs-on: ubuntu-latest
40+
runs-on: ubuntu-22.04
4141
steps:
4242
- name: Checkout Mod Repo
4343
uses: actions/checkout@v4

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ defaults:
5656

5757
jobs:
5858
build:
59-
runs-on: ubuntu-latest
59+
runs-on: ubuntu-22.04
6060
steps:
6161
- name: Checkout Mod Repo
6262
uses: actions/checkout@v4

.github/workflows/internal-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
env:
2020
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
2121
DOTNET_NOLOGO: true
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323
outputs:
2424
package-version: ${{ steps.get-version.outputs.version }}
2525
steps:
@@ -68,7 +68,7 @@ jobs:
6868
secrets: inherit
6969

7070
deploy-nuget:
71-
runs-on: ubuntu-latest
71+
runs-on: ubuntu-22.04
7272
needs: [ test-plugin, test-plugin-nuget, test-plugin-legacy, test-assetbundle ]
7373
environment:
7474
name: "NuGet"

.github/workflows/internal-test-assetbundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212

1313
jobs:
1414
build:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
steps:
1717
- uses: actions/checkout@v4
1818

.github/workflows/internal-test-plugin-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v4
1515

.github/workflows/internal-test-plugin-nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ env:
1414

1515
jobs:
1616
build:
17-
runs-on: ubuntu-latest
17+
runs-on: ubuntu-22.04
1818
steps:
1919
- uses: actions/checkout@v4
2020

.github/workflows/internal-test-plugin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ env:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- uses: actions/checkout@v4
1515

.github/workflows/publish-to-spacedock.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ on:
2727

2828
jobs:
2929
publish-to-spacedock:
30-
runs-on: ubuntu-latest
30+
runs-on: ubuntu-22.04
3131
steps:
3232
- name: get-release-info
3333
id: get-release-info

.github/workflows/validate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
validate:
9-
runs-on: ubuntu-latest
9+
runs-on: ubuntu-22.04
1010
steps:
1111
- name: Checkout repo
1212
uses: actions/checkout@v4

0 commit comments

Comments
 (0)