Skip to content

Commit d0128c4

Browse files
ci: update workflows to use windows-latest runner
1 parent f83510a commit d0128c4

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/cargo-audit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ on:
1212
jobs:
1313
cargo_audit:
1414
name: Cargo Audit
15-
runs-on: windows-2025
15+
runs-on: windows-latest
1616
permissions:
1717
issues: write
1818
checks: write

.github/workflows/code-formatting-check.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
cargo-fmt:
1111
name: .rs Formatting Check
12-
runs-on: windows-2025
12+
runs-on: windows-latest
1313

1414
steps:
1515
- name: Checkout Repository
@@ -25,7 +25,7 @@ jobs:
2525

2626
taplo-fmt:
2727
name: .toml Formatting Check
28-
runs-on: windows-2025
28+
runs-on: windows-latest
2929

3030
steps:
3131
- name: Checkout Repository

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false # Allow all matrix variants to complete even if some fail
1818
matrix:
1919
runner:
20-
- name: windows-2025
20+
- name: windows-latest
2121
arch: amd64
2222
- name: windows-11-arm
2323
arch: arm64

.github/workflows/lint.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,13 @@ name: Lint
1010
jobs:
1111
clippy:
1212
name: Clippy
13-
runs-on: windows-2025
1413
permissions:
1514
checks: write
1615
strategy:
1716
fail-fast: false # Allow all matrix variants to complete even if some fail
1817
matrix:
1918
runner:
20-
- name: windows-2025
19+
- name: windows-latest
2120
arch: amd64
2221
- name: windows-11-arm
2322
arch: arm64
@@ -102,7 +101,7 @@ jobs:
102101
run: cargo +${{ matrix.rust_toolchain }} clippy --locked --profile ${{ matrix.cargo_profile }} --target ${{ matrix.target_triple.name }} --all-targets --features nightly -- -D warnings
103102
machete:
104103
name: Detect Unused Cargo Dependencies
105-
runs-on: windows-2025
104+
runs-on: windows-latest
106105
strategy:
107106
matrix:
108107
wdk:

0 commit comments

Comments
 (0)