Skip to content

Commit

Permalink
[Misc] Workflow: runner version updated
Browse files Browse the repository at this point in the history
Use ubuntu latest (soon to be default) runners in all workflows
  • Loading branch information
Pavan-SAP committed Dec 5, 2024
1 parent 7d7da83 commit a513564
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
build:
name: Build and Test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:

- name: Check out code into the Go module directory
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
analysis:
name: Analyze with Sonar Cloud
needs: build
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:

- name: Check out code for Sonar Analysis
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
workload: ["controller", "server", "web-hooks"]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
contents: read
packages: write
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish-website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defaults:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -40,12 +40,12 @@ jobs:
- name: Setup Hugo
uses: peaceiris/actions-hugo@v3
with:
hugo-version: "0.134.3"
hugo-version: "0.139.3"
extended: true
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: "20.x"
node-version: "22.x"
- name: Update dependencies
run: |
cd website
Expand All @@ -70,7 +70,7 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ defaults:
jobs:
generate_crd:
name: Generate CRD
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4

- name: Generate and Upload CRD
run: |
Expand Down

0 comments on commit a513564

Please sign in to comment.