Skip to content

Commit f1d3ea4

Browse files
chore(actions): update github-actions
1 parent 2b8cc64 commit f1d3ea4

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ defaults:
2121
jobs:
2222
test:
2323
name: Run tests
24-
runs-on: ubuntu-22.04
24+
runs-on: ubuntu-24.04
2525

2626
steps:
2727
- name: Checkout repository
@@ -59,7 +59,7 @@ jobs:
5959
6060
build-docker_controller:
6161
name: Build Docker image (controller)
62-
runs-on: ubuntu-22.04
62+
runs-on: ubuntu-24.04
6363
needs: test
6464
permissions:
6565
contents: read
@@ -88,7 +88,7 @@ jobs:
8888
images: ${{ steps.prepare-repository-name.outputs.repository }}
8989

9090
- name: Build Docker image
91-
uses: docker/build-push-action@v5
91+
uses: docker/build-push-action@v6
9292
with:
9393
platforms: linux/amd64,linux/arm64
9494
context: .
@@ -114,7 +114,7 @@ jobs:
114114

115115
build-docker_webhook:
116116
name: Build Docker image (webhook)
117-
runs-on: ubuntu-22.04
117+
runs-on: ubuntu-24.04
118118
needs: test
119119
permissions:
120120
contents: read
@@ -143,7 +143,7 @@ jobs:
143143
images: ${{ steps.prepare-repository-name.outputs.repository }}
144144

145145
- name: Build Docker image
146-
uses: docker/build-push-action@v5
146+
uses: docker/build-push-action@v6
147147
with:
148148
platforms: linux/amd64,linux/arm64
149149
context: .

.github/workflows/publish-website.yaml

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

2626
jobs:
2727
build:
28-
runs-on: ubuntu-22.04
28+
runs-on: ubuntu-24.04
2929
env:
3030
HUGO_VERSION: 0.111.2
3131

@@ -47,7 +47,7 @@ jobs:
4747

4848
- name: Setup Pages
4949
id: pages
50-
uses: actions/configure-pages@v4
50+
uses: actions/configure-pages@v5
5151

5252
- name: Get node version from package.json
5353
id: get_node_version

.github/workflows/publish.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ defaults:
2020
jobs:
2121
publish-docker_controller:
2222
name: Publish Docker image (controller)
23-
runs-on: ubuntu-22.04
23+
runs-on: ubuntu-24.04
2424
permissions:
2525
contents: read
2626
packages: write
@@ -52,7 +52,7 @@ jobs:
5252
images: ${{ steps.prepare-repository-name.outputs.repository }}
5353

5454
- name: Build and push Docker image
55-
uses: docker/build-push-action@v5
55+
uses: docker/build-push-action@v6
5656
with:
5757
platforms: linux/amd64,linux/arm64
5858
context: .
@@ -71,7 +71,7 @@ jobs:
7171

7272
publish-docker_webhook:
7373
name: Publish Docker image (webhook)
74-
runs-on: ubuntu-22.04
74+
runs-on: ubuntu-24.04
7575
permissions:
7676
contents: read
7777
packages: write
@@ -103,7 +103,7 @@ jobs:
103103
images: ${{ steps.prepare-repository-name.outputs.repository }}
104104

105105
- name: Build and push Docker image
106-
uses: docker/build-push-action@v5
106+
uses: docker/build-push-action@v6
107107
with:
108108
platforms: linux/amd64,linux/arm64
109109
context: .
@@ -122,7 +122,7 @@ jobs:
122122

123123
publish-crds:
124124
name: Publish CRD image
125-
runs-on: ubuntu-22.04
125+
runs-on: ubuntu-24.04
126126
permissions:
127127
contents: read
128128
packages: write
@@ -155,7 +155,7 @@ jobs:
155155
156156
update-chart:
157157
name: Update Helm chart
158-
runs-on: ubuntu-22.04
158+
runs-on: ubuntu-24.04
159159
needs: [publish-docker_controller,publish-docker_webhook,publish-crds]
160160

161161
steps:

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ defaults:
3535
jobs:
3636
release:
3737
name: Trigger release
38-
runs-on: ubuntu-22.04
38+
runs-on: ubuntu-24.04
3939
permissions:
4040
contents: write
4141

0 commit comments

Comments
 (0)