Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/version-consistency-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Version Consistency Check

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
version-check:
name: Version Consistency Check
permissions:
contents: read
runs-on: ubuntu-latest-small
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

runs-on: ubuntu-latest-small is not a standard GitHub-hosted runner label (the repo’s other workflows use ubuntu-latest). If this repository/org doesn’t provide a runner with that label, this workflow will never start. Recommend using ubuntu-latest (or an existing, documented self-hosted runner label used in this repo).

Suggested change
runs-on: ubuntu-latest-small
runs-on: ubuntu-latest

Copilot uses AI. Check for mistakes.
steps:
- uses: actions/checkout@v6
Copy link

Copilot AI Apr 7, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actions/checkout@v6 is inconsistent with the rest of the repo (other workflows use actions/checkout@v4), and may not be a valid major tag for the checkout action in this repository’s dependency policy. Suggest switching this to actions/checkout@v4 for consistency (or pin to whatever version is used elsewhere).

Suggested change
- uses: actions/checkout@v6
- uses: actions/checkout@v4

Copilot uses AI. Check for mistakes.
with:
persist-credentials: false

- name: Check Version Consistency
uses: Skyscanner/version-consistency-check@v1
with:
fail-on-inconsistency: true
Loading