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/buildtest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
go-version: [1.20.x]
os: [ubuntu-22.04]
os: [ubuntu-24.04]
goos: [linux]
goarch: [amd64]
runs-on: ${{ matrix.os }}
Expand All @@ -29,7 +29,7 @@ jobs:

test:
name: test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build
steps:
- name: set up Go
Expand All @@ -43,7 +43,7 @@ jobs:

image-test:
name: image test
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: check out the repo
uses: actions/checkout@v3
Expand All @@ -55,7 +55,7 @@ jobs:
run: make test-image

coverage:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: build
name: coverage
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
permissions:
actions: read
contents: read
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/image-push-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
build-and-push-amd64-ib-sriov-cni:
name: image push amd64
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: check out the repo
uses: actions/checkout@v3
Expand All @@ -37,7 +37,7 @@ jobs:

build-and-push-arm64-ib-sriov-cni:
name: image push arm64
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: check out the repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

build-and-push-ppc64le-ib-sriov-cni:
name: image Push ppc64le
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: check out the repo
uses: actions/checkout@v3
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
file: ./Dockerfile

push-manifest:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [build-and-push-amd64-ib-sriov-cni,build-and-push-arm64-ib-sriov-cni,build-and-push-ppc64le-ib-sriov-cni]
steps:
- name: set up Docker Buildx
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/image-push-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- v*
jobs:
build-and-push-amd64-ib-sriov-cni:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: image push AMD64
steps:
- name: check out the repo
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
file: ./Dockerfile

build-and-push-arm64-ib-sriov-cni:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: image push ARM64
steps:
- name: check out the repo
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
file: ./Dockerfile

build-and-push-ppc64le-ib-sriov-cni:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: image push ppc64le
steps:
- name: check out the repo
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
file: ./Dockerfile

push-manifest:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: [build-and-push-amd64-ib-sriov-cni,build-and-push-arm64-ib-sriov-cni,build-and-push-ppc64le-ib-sriov-cni]
steps:
- name: set up Docker Buildx
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/static-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]
jobs:
golangci:
name: Lint
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: set up Go
uses: actions/setup-go@v3
Expand All @@ -14,14 +14,14 @@ jobs:
- name: run make lint
run: make lint
shellcheck:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: checkout PR
uses: actions/checkout@v2
- name: run make shellcheck
run: make shellcheck
hadolint:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- name: checkout PR
uses: actions/checkout@v2
Expand Down
Loading