Skip to content

Commit

Permalink
ci: pin to ubuntu-22.04, latest just broke things
Browse files Browse the repository at this point in the history
  • Loading branch information
ctron committed Oct 14, 2024
1 parent 1d28042 commit 403c96a
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/brew.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ on:
jobs:
brew:
name: Bump Brew Version
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Release | Brew
uses: mislav/bump-homebrew-formula-action@v3
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

jobs:
lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
uses: ./.github/workflows/docs.yaml

check:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
matrix:
rust:
Expand Down Expand Up @@ -97,15 +97,15 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ ubuntu-22.04, macos-14, windows-2022 ]
include:
- os: ubuntu-latest
- os: ubuntu-22.04
binPath: target/debug/trunk
install: |
sudo apt install -y libssl-dev
- os: macos-latest
- os: macos-14
binPath: target/debug/trunk
- os: windows-latest
- os: windows-2022
binPath: target/debug/trunk.exe
install: |
echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
fail-fast: false
max-parallel: 32
matrix:
os: [ ubuntu-latest, macos-latest, windows-latest ]
os: [ ubuntu-22.04, macos-14, windows-2022 ]
example:
- cargo-manifest
- cdylib
Expand Down Expand Up @@ -248,7 +248,7 @@ jobs:
- name: Setup | Download CLI
uses: actions/download-artifact@v4
with:
name: test-cli-ubuntu-latest
name: test-cli-ubuntu-22.04

- name: Setup | Make executable
run: chmod a+x $GITHUB_WORKSPACE/trunk
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: ./.github/workflows/docs.yaml

deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs:
- docs

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
needs:
- init
- build
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
Expand Down Expand Up @@ -247,7 +247,7 @@ jobs:
publish:
needs: release
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Setup | Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 403c96a

Please sign in to comment.