Skip to content

Commit

Permalink
chore(actions): update github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Sep 26, 2024
1 parent af106dd commit b2368f5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ defaults:
jobs:
test:
name: Run tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout repository
Expand Down Expand Up @@ -59,7 +59,7 @@ jobs:
build-docker_controller:
name: Build Docker image (controller)
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: test
permissions:
contents: read
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
images: ${{ steps.prepare-repository-name.outputs.repository }}

- name: Build Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: .
Expand All @@ -114,7 +114,7 @@ jobs:

build-docker_webhook:
name: Build Docker image (webhook)
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: test
permissions:
contents: read
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
images: ${{ steps.prepare-repository-name.outputs.repository }}

- name: Build Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: .
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ defaults:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
env:
HUGO_VERSION: 0.111.2

Expand All @@ -47,7 +47,7 @@ jobs:

- name: Setup Pages
id: pages
uses: actions/configure-pages@v4
uses: actions/configure-pages@v5

- name: Get node version from package.json
id: get_node_version
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defaults:
jobs:
publish-docker_controller:
name: Publish Docker image (controller)
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
images: ${{ steps.prepare-repository-name.outputs.repository }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: .
Expand All @@ -71,7 +71,7 @@ jobs:

publish-docker_webhook:
name: Publish Docker image (webhook)
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
images: ${{ steps.prepare-repository-name.outputs.repository }}

- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
platforms: linux/amd64,linux/arm64
context: .
Expand All @@ -122,7 +122,7 @@ jobs:

publish-crds:
name: Publish CRD image
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
update-chart:
name: Update Helm chart
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [publish-docker_controller,publish-docker_webhook,publish-crds]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ defaults:
jobs:
release:
name: Trigger release
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: write

Expand Down

0 comments on commit b2368f5

Please sign in to comment.