Commit 4b922ef
authored
⚙️ [Maintenance]: Bring workflows into compliance with the GitHub Actions standard (#31)
Brings this repository's inline CI workflows into line with the
organization's [GitHub Actions coding
standard](https://github.com/MSXOrg/docs/blob/main/src/docs/Coding-Standards/GitHub-Actions.md).
Runner images are now pinned to specific versions so a runner upgrade is
a deliberate, reviewable change, and release runs queue instead of
aborting mid-publish.
- Fixes #29
## Changed: runner images are pinned
No workflow uses a `-latest` runner any more; every `runs-on` names a
specific image.
- `Action-Test.yml` — matrix pinned to `ubuntu-24.04`, `windows-2025`,
`macos-15`
- `Linter.yml` — `ubuntu-24.04`
- `Release.yml` — `ubuntu-24.04`
## Changed: release runs queue instead of cancelling
`Release.yml` now sets `cancel-in-progress: false`, so a release that is
publishing queues behind an in-flight run rather than being aborted
mid-write. `Action-Test.yml` and `Linter.yml` keep `cancel-in-progress:
true`, since cancelling a superseded test or lint run is desirable and
is not a publish action.
## Technical Details
Validated locally with `actionlint` (0 issues) on all three workflows;
the linter workflow re-checks `actionlint` in CI.
These workflows are seeded from
[Template-Action](https://github.com/PSModule/Template-Action); the same
corrections should also land there so regenerated repositories stay
compliant (tracked under
[Process-PSModule#360](PSModule/Process-PSModule#360)).
Dependabot update grouping and semver update labels are intentionally
out of scope (see
[MSXOrg/docs#19](MSXOrg/docs#19) and
[PSModule/Process-PSModule#359](PSModule/Process-PSModule#359)).1 parent ffe7103 commit 4b922ef
3 files changed
Lines changed: 4 additions & 4 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | 28 | | |
29 | 29 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16 | 16 | | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
| 19 | + | |
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
18 | 18 | | |
19 | 19 | | |
20 | 20 | | |
21 | | - | |
| 21 | + | |
22 | 22 | | |
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | 26 | | |
27 | 27 | | |
28 | 28 | | |
29 | | - | |
| 29 | + | |
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
| |||
0 commit comments