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
2 changes: 1 addition & 1 deletion .github/workflows/build_and_push_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ on:

jobs:
build-and-push-image:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
build-binaries:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Setup go
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
extract-image-tag:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
outputs:
build_tag: ${{ steps.extract_tag.outputs.tag }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre_release_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
extract-image-tag:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
outputs:
build_tag: ${{ steps.extract_tag.outputs.tag }}
steps:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
markdownlint:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
Expand All @@ -18,7 +18,7 @@ jobs:
run: make markdownlint

test-sumologic-mock:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions-rs/[email protected]
Expand All @@ -37,7 +37,7 @@ jobs:
run: make test

build-image:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Build kubernetes-tools image
Expand All @@ -46,7 +46,7 @@ jobs:
run: make test-image

test-update-collection-v3:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
extract-image-tag:
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
outputs:
build_tag: ${{ steps.extract_tag.outputs.tag }}
steps:
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: ./.github/workflows/build_binaries.yml
create-release:
name: Create Github release
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
needs:
- build-binaries
- extract-image-tag
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.5 as go-builder
FROM golang:1.24.2 as go-builder
RUN mkdir /build
ADD ./src/go /build/
WORKDIR /build
Expand All @@ -22,7 +22,7 @@ RUN CGO_ENABLED=0 GOOS=linux \
-ldflags '-w -extldflags "-static"' \
-o update-collection-v3 cmd/update-collection-v3/main.go

FROM rust:1.78.0-alpine3.18 as rust-builder
FROM rust:1.86.0-alpine as rust-builder
RUN apk update \
&& apk upgrade \
&& apk add g++ git \
Expand All @@ -35,7 +35,7 @@ WORKDIR /logs-generator
COPY ./src/rust/logs-generator .
RUN cargo build --release

FROM alpine:3.20.1
FROM alpine:3.21.3
ARG TARGETARCH
ARG TARGETOS
ENV HELM_VERSION="3.7.2"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.kubectl-ubi
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.10
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.5

ARG TARGETARCH
ARG TARGETOS
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.sumologic-mock
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1.78.0-alpine3.18 as rust-builder
FROM rust:1.86.0-alpine as rust-builder
RUN apk update \
&& apk upgrade \
&& apk add g++ git \
Expand All @@ -11,7 +11,7 @@ WORKDIR /sumologic-mock
COPY ./src/rust/sumologic-mock .
RUN cargo build --release

FROM alpine:3.20.1
FROM alpine:3.21.3
ARG TARGETARCH
ARG TARGETOS

Expand Down
Loading
Loading