redhat-cop / redhat-cop/openshift_virtualization_migration_ees
fix: actions/checkout@v6 does not exist — release job will fail
Nobody has claimed this yet.
- Dominant language
- Shell
- Stars
- 1
- Forks
- 3
- PR merge metrics
- No merged PRs in 30d
Description
Problem
In .github/workflows/build-ee.yml, the release job's Setup | Checkout Repository on Release Branch step uses actions/checkout@v6, which does not exist (the latest stable version is v4). This causes the semantic-release job to fail on every main-branch push.
# current (broken)
- name: Setup | Checkout Repository on Release Branch
uses: actions/checkout@v6
Proposed Solution
Change actions/checkout@v6 to actions/checkout@v4 in the release job of build-ee.yml.
# fix
- name: Setup | Checkout Repository on Release Branch
uses: actions/checkout@v4
with:
fetch-depth: 0
Files to Change
.github/workflows/build-ee.yml
Contributor guide
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Open .github/workflows/build-ee.yml and locate the release job's “Setup | Checkout Repository on Release Branch” step. Confirm the checkout action version used there, update it to the stable version specified in the issue, and verify the workflow still includes fetch-depth: 0. Done means the release job no longer references the nonexistent action version.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- github-actions
- Domain
- ci-cd
- Issue type
- Bug
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Quiet
- Clarity
- Clearly specified
- Newbie friendliness
- 90/100