-
Notifications
You must be signed in to change notification settings - Fork 37
Bump the github-actions group across 1 directory with 4 updates #134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -29,7 +29,7 @@ jobs: | |||||
| contents: read | ||||||
| steps: | ||||||
| - name: Checkout repository | ||||||
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | ||||||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | ||||||
|
||||||
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| uses: actions/checkout@v6 |
Copilot
AI
Dec 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actions/checkout action is being updated inconsistently across workflow files. In this file, it's being updated to v5.0.1 (commit 93cb6efe18208431cddfb8368fd83d5badbf9bfd), but in other workflow files (test.yaml, publish.yaml, lint.yaml, helm.yaml, build.yaml), it's being updated to v6. This creates a version inconsistency where different workflows would use different major versions of the same action. All instances should be updated to the same version, preferably v6 as indicated in the PR title and description.
| uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1 | |
| uses: actions/checkout@v6 # v6 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The actions/checkout action is being updated inconsistently across workflow files. In this file, it's being updated to v5.0.1 (commit 93cb6efe18208431cddfb8368fd83d5badbf9bfd), but in other workflow files (test.yaml, publish.yaml, lint.yaml, helm.yaml, build.yaml), it's being updated to v6. This creates a version inconsistency where different workflows would use different major versions of the same action. All instances should be updated to the same version, preferably v6 as indicated in the PR title and description.