redhat-cop / redhat-cop/openshift_virtualization_migration_ees

fix: actions/checkout@v6 does not exist — release job will fail

Open Beginner friendly
#6 0 comments 0 reactions 0 assignees View on GitHub

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

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.