Skip to content

Commit 403c96a

Browse files
committed
ci: pin to ubuntu-22.04, latest just broke things
1 parent 1d28042 commit 403c96a

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/brew.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
jobs:
2020
brew:
2121
name: Bump Brew Version
22-
runs-on: ubuntu-latest
22+
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Release | Brew
2525
uses: mislav/bump-homebrew-formula-action@v3

.github/workflows/ci.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ on:
1111

1212
jobs:
1313
lint:
14-
runs-on: ubuntu-latest
14+
runs-on: ubuntu-22.04
1515
steps:
1616
- name: Setup | Checkout
1717
uses: actions/checkout@v4
@@ -46,7 +46,7 @@ jobs:
4646
uses: ./.github/workflows/docs.yaml
4747

4848
check:
49-
runs-on: ubuntu-latest
49+
runs-on: ubuntu-22.04
5050
strategy:
5151
matrix:
5252
rust:
@@ -97,15 +97,15 @@ jobs:
9797
strategy:
9898
fail-fast: false
9999
matrix:
100-
os: [ ubuntu-latest, macos-latest, windows-latest ]
100+
os: [ ubuntu-22.04, macos-14, windows-2022 ]
101101
include:
102-
- os: ubuntu-latest
102+
- os: ubuntu-22.04
103103
binPath: target/debug/trunk
104104
install: |
105105
sudo apt install -y libssl-dev
106-
- os: macos-latest
106+
- os: macos-14
107107
binPath: target/debug/trunk
108-
- os: windows-latest
108+
- os: windows-2022
109109
binPath: target/debug/trunk.exe
110110
install: |
111111
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
@@ -160,7 +160,7 @@ jobs:
160160
fail-fast: false
161161
max-parallel: 32
162162
matrix:
163-
os: [ ubuntu-latest, macos-latest, windows-latest ]
163+
os: [ ubuntu-22.04, macos-14, windows-2022 ]
164164
example:
165165
- cargo-manifest
166166
- cdylib
@@ -248,7 +248,7 @@ jobs:
248248
- name: Setup | Download CLI
249249
uses: actions/download-artifact@v4
250250
with:
251-
name: test-cli-ubuntu-latest
251+
name: test-cli-ubuntu-22.04
252252

253253
- name: Setup | Make executable
254254
run: chmod a+x $GITHUB_WORKSPACE/trunk

.github/workflows/pages.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
uses: ./.github/workflows/docs.yaml
1616

1717
deploy:
18-
runs-on: ubuntu-latest
18+
runs-on: ubuntu-22.04
1919
needs:
2020
- docs
2121

.github/workflows/release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ jobs:
209209
needs:
210210
- init
211211
- build
212-
runs-on: ubuntu-latest
212+
runs-on: ubuntu-22.04
213213
steps:
214214
- name: Setup | Checkout
215215
uses: actions/checkout@v4
@@ -247,7 +247,7 @@ jobs:
247247
248248
publish:
249249
needs: release
250-
runs-on: ubuntu-latest
250+
runs-on: ubuntu-22.04
251251
steps:
252252
- name: Setup | Checkout
253253
uses: actions/checkout@v4

0 commit comments

Comments
 (0)