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
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
MatousJobanek marked this conversation as resolved.

- name: Install Go
uses: actions/setup-go@v6
Expand All @@ -35,7 +35,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install Go
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-check-gomod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
MatousJobanek marked this conversation as resolved.
- name: check
uses: codeready-toolchain/toolchain-cicd/gomod-check@master
2 changes: 1 addition & 1 deletion .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
MatousJobanek marked this conversation as resolved.

- name: Run govulncheck
uses: codeready-toolchain/toolchain-cicd/govulncheck-action@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-components-for-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
# Checkout from PR event
- name: Checkout code from PR event
uses: actions/checkout@v6
uses: actions/checkout@v7
Comment thread
MatousJobanek marked this conversation as resolved.
if: ${{ github.event_name == 'pull_request_target' }}
with:
ref: ${{github.event.pull_request.head.ref}}
Expand All @@ -45,7 +45,7 @@ jobs:
# Checkout the code based on the data retrieved from the previous step
# Is executed only for comment events
- name: Checkout code from PR
uses: actions/checkout@v6
uses: actions/checkout@v7
if: ${{ github.event_name == 'issue_comment' }}
with:
repository: ${{ fromJson(steps.request.outputs.data).head.repo.full_name }}
Expand Down
Loading