Skip to content

Commit 7d15d8d

Browse files
chore: Upset dist config Actions runners
GitHub has sunset some older runners, so we need to bump our versions to keep pace with what they support. Signed-off-by: Andrew Lilley Brinker <alilleybrinker@gmail.com>
1 parent 3c979dd commit 7d15d8d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
test:
4040
strategy:
4141
matrix:
42-
os: [ubuntu-22.04, windows-2019, macos-13, macos-14]
42+
os: [ubuntu-22.04, windows-2022, macos-13, macos-14]
4343
name: "${{ matrix.os }}"
4444
runs-on: ${{ matrix.os }}
4545
timeout-minutes: 15

dist-workspace.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ github-attestations = true
2828
# Path that installers should place binaries in
2929
install-path = ["~/.local/bin", "~/.omnibor/bin"]
3030

31-
# NOTE: MUST be synced manually with runners in `.github/workflows/hipcheck.yml`
31+
# NOTE: MUST be synced manually with runners in `.github/workflows/test.yml`
3232
[dist.github-custom-runners]
3333
global = "ubuntu-22.04"
3434
# Ensure Apple Silicon macOS builds run natively rather than cross-compiling
@@ -42,3 +42,6 @@ aarch64-apple-darwin = "macos-14"
4242
# compatible with 24.04, but if we built on 24.04 the glibc *would not* be
4343
# backwards-compatible.
4444
x86_64-unknown-linux-gnu = "ubuntu-22.04"
45+
# GitHub has sunset older versions of windows, so this ensures we can actually
46+
# run in GitHub Actions.
47+
x86_64-pc-windows-msvc = "windows-2022"

0 commit comments

Comments
 (0)