Skip to content

Commit ecca3b0

Browse files
authored
feat: Update all addon versions (#1139)
**What problem does this PR solve?**: **Which issue(s) this PR fixes**: Fixes # **How Has This Been Tested?**: <!-- Please describe the tests that you ran to verify your changes. Provide output from the tests and any manual steps needed to replicate the tests. --> **Special notes for your reviewer**: <!-- Use this to provide any additional information to the reviewers. This may include: - Best way to review the PR. - Where the author wants the most review attention on. - etc. -->
1 parent e4f8876 commit ecca3b0

40 files changed

+767
-573
lines changed

.github/workflows/backport.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defaults:
1414
jobs:
1515
backport:
1616
name: Backport PR
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
if: |
1919
github.event.pull_request.merged == true
2020
&& contains(github.event.pull_request.labels.*.name, 'auto-backport')

.github/workflows/blackduck.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ on:
2323
jobs:
2424
security:
2525
if: github.repository == 'nutanix-cloud-native/cluster-api-runtime-extensions-nutanix'
26-
runs-on: ubuntu-22.04
26+
runs-on: ubuntu-24.04
2727
permissions:
2828
pull-requests: write
2929
steps:

.github/workflows/checks.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ defaults:
2525

2626
jobs:
2727
unit-test:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
steps:
3030
- name: Check out code
3131
uses: actions/checkout@v4
@@ -79,7 +79,7 @@ jobs:
7979
focus: Quick start
8080
provider: ${{ matrix.config.provider }}
8181
kubernetes-version: ${{ matrix.config.kubernetesVersion }}
82-
runs-on: ${{ matrix.config.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-22.04' }}
82+
runs-on: ${{ matrix.config.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-24.04' }}
8383
base-os: ${{ matrix.config.provider == 'Nutanix' && matrix.config.baseOS || '' }}
8484
secrets: inherit
8585
permissions:
@@ -109,14 +109,14 @@ jobs:
109109
focus: Self-hosted
110110
provider: ${{ matrix.config.provider }}
111111
kubernetes-version: ${{ matrix.config.kubernetesVersion }}
112-
runs-on: ${{ matrix.config.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-22.04' }}
112+
runs-on: ${{ matrix.config.provider == 'Nutanix' && 'self-hosted-ncn-dind' || 'ubuntu-24.04' }}
113113
secrets: inherit
114114
permissions:
115115
contents: read
116116
checks: write
117117

118118
lint-go:
119-
runs-on: ubuntu-22.04
119+
runs-on: ubuntu-24.04
120120
strategy:
121121
matrix:
122122
module: [api, common, .]
@@ -149,7 +149,7 @@ jobs:
149149
golangci_lint_flags: "--config=${{ github.workspace }}/.golangci.yml"
150150

151151
lint-gha:
152-
runs-on: ubuntu-22.04
152+
runs-on: ubuntu-24.04
153153
permissions:
154154
pull-requests: write
155155
steps:
@@ -163,7 +163,7 @@ jobs:
163163
reporter: github-pr-review
164164

165165
pre-commit:
166-
runs-on: ubuntu-22.04
166+
runs-on: ubuntu-24.04
167167
steps:
168168
- name: Check out code
169169
uses: actions/checkout@v4
@@ -197,7 +197,7 @@ jobs:
197197
SKIP: no-commit-to-branch,golangci-lint,actionlint-system
198198

199199
lint-test-helm:
200-
runs-on: ubuntu-22.04
200+
runs-on: ubuntu-24.04
201201
env:
202202
KIND_CLUSTER_NAME: chart-testing
203203
KIND_KUBECONFIG: ct-kind-kubeconfig

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defaults:
1414
jobs:
1515
analyze:
1616
name: Analyze
17-
runs-on: ubuntu-22.04
17+
runs-on: ubuntu-24.04
1818
permissions:
1919
actions: read
2020
contents: read

.github/workflows/conventional-label.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ on:
99
- edited
1010
jobs:
1111
label:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: bcoe/conventional-release-labels@v1

.github/workflows/conventional-pr-title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- edited
1010
jobs:
1111
check:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-24.04
1313
steps:
1414
- uses: amannn/action-semantic-pull-request@v5
1515
with:

.github/workflows/dependabot-automation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
jobs:
2020
enable-automerge:
2121
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]'}}
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
steps:
2424
- name: Dependabot metadata
2525
id: dependabot-metadata

.github/workflows/devbox-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ defaults:
1919
jobs:
2020
devbox-update:
2121
if: github.ref_type == 'branch'
22-
runs-on: ubuntu-22.04
22+
runs-on: ubuntu-24.04
2323
env:
2424
DESTINATION_BRANCH: scheduled-devbox-update-${{ github.ref_name }}
2525
steps:

.github/workflows/github-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ defaults:
3333
jobs:
3434
# Build job
3535
build:
36-
runs-on: ubuntu-22.04
36+
runs-on: ubuntu-24.04
3737
steps:
3838
- name: Checkout
3939
uses: actions/checkout@v4
@@ -86,7 +86,7 @@ jobs:
8686
environment:
8787
name: github-pages
8888
url: ${{ steps.deployment.outputs.page_url }}
89-
runs-on: ubuntu-22.04
89+
runs-on: ubuntu-24.04
9090
needs: build
9191
if: github.ref == 'refs/heads/main'
9292
steps:

.github/workflows/govulncheck.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ defaults:
1818
shell: bash
1919
jobs:
2020
govulncheck:
21-
runs-on: ubuntu-22.04
21+
runs-on: ubuntu-24.04
2222
strategy:
2323
matrix:
2424
module: [api, common, .]

0 commit comments

Comments
 (0)