Skip to content

Commit f7f6ba8

Browse files
authored
Update project to go 1.25.7 (#132)
Signed-off-by: David Kwon <dakwon@redhat.com>
1 parent 29060ed commit f7f6ba8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pr-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
name: Set up Go 1.x
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: '1.25.5'
28+
go-version: '1.25.7'
2929
-
3030
name: Check out code into the Go module directory
3131
uses: actions/checkout@v4

build/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9/go-toolset
2-
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.5-1769430014 AS builder
2+
FROM registry.access.redhat.com/ubi9/go-toolset:1.25.7-1772454089 AS builder
33
ENV GOPATH=/go/
44
USER root
55
WORKDIR /web-terminal-exec
@@ -18,7 +18,7 @@ COPY . .
1818
RUN make compile
1919

2020
# https://access.redhat.com/containers/?tab=tags#/registry.access.redhat.com/ubi9-minimal
21-
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7-1770203734
21+
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.7-1771346502
2222
RUN microdnf -y update && microdnf clean all && rm -rf /var/cache/yum && echo "Installed Packages" && rpm -qa | sort -V && echo "End Of Installed Packages"
2323
WORKDIR /
2424
COPY --from=builder /web-terminal-exec/_output/bin/web-terminal-exec /usr/local/bin/web-terminal-exec

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/redhat-developer/web-terminal-exec
22

3-
go 1.25.5
3+
go 1.25.7
44

55
require (
66
github.com/sirupsen/logrus v1.9.1

0 commit comments

Comments
 (0)