ci(deps): bump actions/checkout from 6.0.2 to 6.0.3#8678
ci(deps): bump actions/checkout from 6.0.2 to 6.0.3#8678dependabot[bot] wants to merge 1 commit into
Conversation
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@de0fac2...df4cb1c) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.3 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
|
Pipeline controller notification For optional jobs, comment This repository is configured in: LGTM mode |
📝 WalkthroughWalkthroughThis PR updates the pinned Suggested reviewers
🚥 Pre-merge checks | ✅ 11✅ Passed checks (11 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
Hi @dependabot[bot]. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: dependabot[bot] The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
Inline comments:
In @.github/workflows/gocacheprog-test-reusable.yaml:
- Line 15: The workflow currently pins actions/checkout to the wrong commit SHA
(uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10) while labeling
it as v6.0.3; update the pin so the tag and SHA match by replacing the SHA with
the correct commit for v6.0.3 (9f698171ed81b15d1823a05fc7211befd50c8ae0) or
simply use the tag name (actions/checkout@v6.0.3) in the line referencing
actions/checkout to ensure consistency.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Repository YAML (base), Central YAML (inherited)
Review profile: CHILL
Plan: Enterprise
Run ID: 5aa87a4a-95d5-4b13-937c-8592a2d9eca6
📒 Files selected for processing (14)
.github/workflows/address-review-comments.yaml.github/workflows/codespell-reusable.yaml.github/workflows/cpo-container-sync-reusable.yaml.github/workflows/dependabot-commit-fix-reusable.yaml.github/workflows/docs-build-reusable.yaml.github/workflows/envtest-kube-reusable.yaml.github/workflows/envtest-ocp-reusable.yaml.github/workflows/gitlint-reusable.yaml.github/workflows/gocacheprog-test-reusable.yaml.github/workflows/lint-reusable.yaml.github/workflows/sync-community-fork.yaml.github/workflows/test-reusable.yaml.github/workflows/validate-cpo-overrides.yaml.github/workflows/verify-reusable.yaml
| timeout-minutes: 10 | ||
| steps: | ||
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | ||
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 |
There was a problem hiding this comment.
🧩 Analysis chain
🏁 Script executed:
#!/bin/bash
# Description: Verify that the commit SHA matches the v6.0.3 tag in actions/checkout
# Fetch the commit SHA for the v6.0.3 tag from the actions/checkout repository
gh api repos/actions/checkout/git/ref/tags/v6.0.3 --jq '.object.sha'
# Expected: df4cb1c069e1874edd31b4311f1884172cec0e10Repository: openshift/hypershift
Length of output: 105
🏁 Script executed:
#!/bin/bash
set -euo pipefail
PINNED_SHA="df4cb1c069e1874edd31b4311f1884172cec0e10"
echo "v6.0.3 tag -> expected object.sha"
gh api repos/actions/checkout/git/ref/tags/v6.0.3 --jq '.object.sha'
echo
echo "Find which actions/checkout tag maps to pinned SHA (top 100 tags)"
gh api repos/actions/checkout/tags --paginate --jq '.[] | {name: .name, commit: .commit.sha}' \
| python3 - <<PY
import sys, json
pinned = "$PINNED_SHA"
hits = []
for line in sys.stdin:
line=line.strip()
if not line:
continue
try:
obj=json.loads(line)
except Exception:
continue
if obj.get("commit","").lower()==pinned.lower():
hits.append(obj.get("name"))
if hits:
print("Pinned SHA matches tag(s):", ", ".join(hits))
else:
print("Pinned SHA not found in returned tag list.")
PYRepository: openshift/hypershift
Length of output: 251
Fix actions/checkout SHA pin to match v6.0.3
The v6.0.3 tag in actions/checkout resolves to 9f698171ed81b15d1823a05fc7211befd50c8ae0, but the workflow pins df4cb1c069e1874edd31b4311f1884172cec0e10 (# v6.0.3), so the tag/SHA mapping is incorrect.
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.
In @.github/workflows/gocacheprog-test-reusable.yaml at line 15, The workflow
currently pins actions/checkout to the wrong commit SHA (uses:
actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10) while labeling it as
v6.0.3; update the pin so the tag and SHA match by replacing the SHA with the
correct commit for v6.0.3 (9f698171ed81b15d1823a05fc7211befd50c8ae0) or simply
use the tag name (actions/checkout@v6.0.3) in the line referencing
actions/checkout to ensure consistency.
|
@dependabot[bot]: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
Bumps actions/checkout from 6.0.2 to 6.0.3.
Release notes
Sourced from actions/checkout's releases.
Changelog
Sourced from actions/checkout's changelog.
... (truncated)
Commits
df4cb1cUpdate changelog for v6.0.3 (#2446)1cce339Fix checkout init for SHA-256 repositories (#2439)900f221fix: expand merge commit SHA regex and add SHA-256 test cases (#2414)0c366fdUpdate changelog (#2357)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)Summary by CodeRabbit