Skip to content
Merged
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/apply-konflux-manifests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup Golang
uses: ./actions/setup-go
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/generate-release-crs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout serverless operator
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: "${{ inputs.revision }}"
repository: 'openshift-knative/serverless-operator'
Expand All @@ -48,7 +48,7 @@ jobs:
git config --global user.name "serverless-qe"

- name: Checkout openshift-knative/hack
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: openshift-knative/hack
path: ./src/github.com/openshift-knative/hack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: Setup Golang
uses: ./actions/setup-go
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multiarch-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v6

- name: Setup Golang
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/multiarch-containerfile-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: Build images
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v6

- name: Calculate tags
id: calc-tag
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-discover-branches.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
GOPATH: ${{ github.workspace }}
steps:
- name: Checkout openshift-knative/hack
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
path: ./src/github.com/openshift-knative/hack

Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:

# The runner runs on Ubuntu and we need to have python3-dnf installed, so we'll use a container to run the rpm-lockfile-prototype
- name: Checkout rpm-lockfile-prototype
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: 'konflux-ci/rpm-lockfile-prototype'
path: ./src/github.com/openshift-knative/rpm-lockfile-prototype
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-generate-ci-template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
sudo rm -rf /opt/ghc || true
sudo rm -rf "$AGENT_TOOLSDIRECTORY" || true
- name: Checkout openshift-knative/hack
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: ./src/github.com/openshift-knative/hack

Expand All @@ -54,15 +54,15 @@ jobs:

- name: Checkout openshift/release
if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: 'main'
repository: 'openshift/release'
path: ./src/github.com/openshift-knative/hack/openshift/release

- name: Checkout openshift/release
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') && github.ref_name == 'main' }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: 'main'
repository: 'openshift/release'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-generate-ci.yaml
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we probably have to exclude this file, as this is autogenerated anyhow

Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
sudo rm -rf /opt/ghc || true
sudo rm -rf "$AGENT_TOOLSDIRECTORY" || true
- name: Checkout openshift-knative/hack
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: ./src/github.com/openshift-knative/hack
- name: Setup Golang
Expand All @@ -148,14 +148,14 @@ jobs:
run: find config/*.yaml | xargs -I{} sh -c "yaml2json < {} > {}.json"
- name: Checkout openshift/release
if: ${{ github.event_name == 'pull_request' }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: 'main'
repository: 'openshift/release'
path: ./src/github.com/openshift-knative/hack/openshift/release
- name: Checkout openshift/release
if: ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule') && github.ref_name == 'main' }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: 'main'
repository: 'openshift/release'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-command-repository.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ inputs.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: '${{ inputs.repository }}'
path: "./src/github.com/${{ inputs.repository }}"
Expand Down
Loading