Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-push-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout forklift
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Login to ${{ env.REGISTRY }} with bot account
uses: docker/login-action@v3
Expand All @@ -94,7 +94,7 @@ jobs:
needs: build_push
steps:
- name: Checkout forklift
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Login to ${{ env.REGISTRY }} with bot account
uses: docker/login-action@v3
Expand All @@ -120,7 +120,7 @@ jobs:
needs: build_push_bundle
steps:
- name: Checkout forklift
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Login to ${{ env.REGISTRY }} with bot account
uses: docker/login-action@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install libvirt dependencies
run: |
sudo apt-get update
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Check out forklift repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- run: ${{ matrix.shell }} ./pkg/virt-v2v/customize/scripts/rhel/run/test-network_config_util.sh

Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checks-out repository under $GITHUB_WORKSPACE
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: go/src/github.com/${{github.repository}}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-branch-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
- name: Checks-out repository under $GITHUB_WORKSPACE
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: go/src/github.com/${{github.repository}}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "assets_exist=false" >> "$GITHUB_OUTPUT"
fi

- uses: actions/checkout@v4
- uses: actions/checkout@v7
if: steps.check_assets.outputs.assets_exist != 'true'
with:
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run-osp-extended-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
status: pending

- name: Checkout forklift
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: prepare the secrets
uses: kubev2v/forkliftci/ci/prepare-ansible-secrets@v6.0
Expand All @@ -63,12 +63,12 @@ jobs:
timeout-minutes: 45
steps:
- name: Checkout forklift
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
path: forklift

- name: Checkout forkliftci
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: kubev2v/forkliftci
ref: v6.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-commit-messages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
fetch-depth: 0 # Fetch full history to get all commits

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-forklift-controller-crd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
persist-credentials: false
- name: Set up Go
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 10
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Setup Go
uses: actions/setup-go@v4
Expand Down
Loading