You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/version-checks.yaml
+17-17Lines changed: 17 additions & 17 deletions
Original file line number
Diff line number
Diff line change
@@ -19,10 +19,10 @@ jobs:
19
19
- name: Checkout Repository
20
20
uses: actions/checkout@v5
21
21
22
-
# All check steps use 'if: !cancelled()' to ensure all checks run even if earlier ones fail,
22
+
# All check steps use 'if: '!cancelled()'' to ensure all checks run even if earlier ones fail,
23
23
# while still respecting manual workflow cancellations. The job will fail if any check fails.
24
24
- name: Check wdk-build version (README vs crates/wdk-build)
25
-
if: !cancelled()
25
+
if: '!cancelled()'
26
26
uses: ./.github/actions/compare-regex-versions
27
27
with:
28
28
file1: README.md
@@ -35,7 +35,7 @@ jobs:
35
35
error-message: "Please update README.md to match the wdk-build crate's version."
36
36
37
37
- name: Check wdk-sys and wdk-macros lockstep versioning
38
-
if: !cancelled()
38
+
if: '!cancelled()'
39
39
uses: ./.github/actions/compare-regex-versions
40
40
with:
41
41
file1: crates/wdk-sys/Cargo.toml
@@ -47,7 +47,7 @@ jobs:
47
47
error-message: "These crates must be versioned in lockstep because: (1) wdk-macros is a proc-macro crate that should only be consumed through wdk-sys re-exports, and (2) the two crates form a tightly coupled API surface. When updating either crate, both versions must be bumped together."
48
48
49
49
- name: Check workspace wdk-macros dependency version matches wdk-sys crate version
50
-
if: !cancelled()
50
+
if: '!cancelled()'
51
51
uses: ./.github/actions/compare-regex-versions
52
52
with:
53
53
file1: Cargo.toml
@@ -62,7 +62,7 @@ jobs:
62
62
# Template version checks - ensure cargo-wdk templates use latest dep
63
63
# versions by comparing them against those in the workspace's Cargo.toml file
0 commit comments