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
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
check_docs_only:
name: check_docs_only
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
skip: ${{ steps.check_docs_only.outputs.skip }}
steps:
Expand All @@ -35,7 +35,7 @@ jobs:
needs: check_docs_only
# Run this job on a tag like 'vX.Y.Z' or on a branch or pull request with code changes.
if: startsWith(github.ref, 'refs/tags/v') || ( needs.check_docs_only.outputs.skip != 'true' && !startsWith(github.ref, 'refs/tags/') )
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: deploy
steps:
- name: checkout
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
needs: check_docs_only
# Run this job on a tag like 'vX.Y.Z' or on a branch or pull request with code changes.
if: startsWith(github.ref, 'refs/tags/v') || ( needs.check_docs_only.outputs.skip != 'true' && !startsWith(github.ref, 'refs/tags/') )
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: deploy
strategy:
matrix:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
needs: check_docs_only
# Run this job on a tag like 'scorecard-kuttl/vX.Y.Z' or on a branch or pull request with code changes.
if: startsWith(github.ref, 'refs/tags/scorecard-kuttl/v') || ( needs.check_docs_only.outputs.skip != 'true' && !startsWith(github.ref, 'refs/tags/') )
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: deploy
steps:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/freshen-images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
git_tags:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
git_tags: ${{ steps.tags.outputs.git_tags }}
steps:
Expand All @@ -27,7 +27,7 @@ jobs:
build:
name: build
needs: git_tags
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
environment: deploy
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
check_docs_only:
name: check_docs_only
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
skip: ${{ steps.check_docs_only.outputs.skip }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:

integration:
name: integration
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check_docs_only
if: needs.check_docs_only.outputs.skip != 'true'
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rerun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
rerun_tests:
name: rerun_pr_tests
if: ${{ github.event.issue.pull_request }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: operator-framework/rerun-actions@v0.4.0
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
jobs:
check_docs_only:
name: check_docs_only
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
skip: ${{ steps.check_docs_only.outputs.skip }}
steps:
Expand All @@ -25,7 +25,7 @@ jobs:

e2e:
name: e2e
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check_docs_only
if: needs.check_docs_only.outputs.skip != 'true'
steps:
Expand All @@ -45,7 +45,7 @@ jobs:

unit:
name: unit
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check_docs_only
if: needs.check_docs_only.outputs.skip != 'true'
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
check_docs_only:
name: check_docs_only
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
skip: ${{ steps.check_docs_only.outputs.skip }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:

e2e:
name: e2e
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check_docs_only
if: needs.check_docs_only.outputs.skip != 'true'
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-sample-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
check_docs_only:
name: check_docs_only
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
skip: ${{ steps.check_docs_only.outputs.skip }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:

e2e:
name: e2e
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check_docs_only
if: needs.check_docs_only.outputs.skip != 'true'
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-sanity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
jobs:
check_docs_only:
name: check_docs_only
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
skip: ${{ steps.check_docs_only.outputs.skip }}
steps:
Expand All @@ -22,7 +22,7 @@ jobs:

sanity:
name: sanity
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: check_docs_only
if: needs.check_docs_only.outputs.skip != 'true'
steps:
Expand All @@ -43,7 +43,7 @@ jobs:

docs:
name: docs
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
Loading