Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ on:
jobs:
build-images:
name: "build-images"
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
strategy:
fail-fast: true
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-k8s-incluster-lvmd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
e2e-k8s-incluster-lvmd:
name: "e2e-k8s-incluster-lvmd"
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-k8s-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
e2e-k8s:
name: "e2e-k8s"
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
strategy:
fail-fast: false
matrix:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:

jobs:
build:
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
lint:
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"

steps:
- name: "Checkout"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
build:
name: "build"
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand All @@ -29,7 +29,7 @@ jobs:
container-structure-test:
name: "container-structure-test"
needs: build
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
strategy:
fail-fast: true
matrix:
Expand All @@ -47,7 +47,7 @@ jobs:
example:
if: startsWith(github.head_ref, 'bump-chart-')
name: "example"
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
defaults:
run:
working-directory: "example"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
release:
name: "release"
needs: [prepare, build-images]
runs-on: "ubuntu-20.04"
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ RUN touch pkg/lvmd/proto/*.go
RUN make build-topolvm TOPOLVM_VERSION=${TOPOLVM_VERSION} GOARCH=${TARGETARCH}

# TopoLVM container
FROM --platform=$TARGETPLATFORM ubuntu:22.04 as topolvm
FROM --platform=$TARGETPLATFORM ubuntu:24.04 as topolvm

ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update \
Expand Down