File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1919 - name : Set up Go 1.23
2020 uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2121 with :
22- go-version : 1.23.1
22+ go-version : 1.23.2
2323
2424 - name : Disable default go problem matcher
2525 run : echo "::remove-matcher owner=go::"
Original file line number Diff line number Diff line change 2323 - name : Set up Go 1.23
2424 uses : actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
2525 with :
26- go-version : 1.23.1
26+ go-version : 1.23.2
2727
2828 - name : Disable default go problem matcher
2929 run : echo "::remove-matcher owner=go::"
Original file line number Diff line number Diff line change @@ -11,19 +11,19 @@ RUN yum install -y gcc git jq make wget
1111ENV \
1212 GO_DL_URL=https://golang.org/dl \
1313 GOPATH=/root/go
14- ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.23.1 .linux-amd64.tar.gz
15- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.23.1 .linux-arm64.tar.gz
14+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.23.2 .linux-amd64.tar.gz
15+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.23.2 .linux-arm64.tar.gz
1616
1717# Determine the CPU architecture and download the appropriate Go binary
1818RUN \
1919 if [ "$(uname -m)" = x86_64 ]; then \
2020 wget --directory-prefix=${TEMP_DIR} ${GO_BIN_URL_x86_64} --quiet \
2121 && rm -rf /usr/local/go \
22- && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.1 .linux-amd64.tar.gz; \
22+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.2 .linux-amd64.tar.gz; \
2323 elif [ "$(uname -m)" = aarch64 ]; then \
2424 wget --directory-prefix=${TEMP_DIR} ${GO_BIN_URL_aarch64} --quiet \
2525 && rm -rf /usr/local/go \
26- && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.1 .linux-arm64.tar.gz; \
26+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.2 .linux-arm64.tar.gz; \
2727 else \
2828 echo "CPU architecture is not supported." && exit 1; \
2929 fi
Original file line number Diff line number Diff line change @@ -11,19 +11,19 @@ RUN yum install -y gcc git jq make wget
1111ENV \
1212 GO_DL_URL=https://golang.org/dl \
1313 GOPATH=/root/go
14- ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.23.1 .linux-amd64.tar.gz
15- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.23.1 .linux-arm64.tar.gz
14+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.23.2 .linux-amd64.tar.gz
15+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.23.2 .linux-arm64.tar.gz
1616
1717# Determine the CPU architecture and download the appropriate Go binary
1818RUN \
1919 if [ "$(uname -m)" = x86_64 ]; then \
2020 wget --directory-prefix=${TEMP_DIR} ${GO_BIN_URL_x86_64} --quiet \
2121 && rm -rf /usr/local/go \
22- && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.1 .linux-amd64.tar.gz; \
22+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.2 .linux-amd64.tar.gz; \
2323 elif [ "$(uname -m)" = aarch64 ]; then \
2424 wget --directory-prefix=${TEMP_DIR} ${GO_BIN_URL_aarch64} --quiet \
2525 && rm -rf /usr/local/go \
26- && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.1 .linux-arm64.tar.gz; \
26+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.23.2 .linux-arm64.tar.gz; \
2727 else \
2828 echo "CPU architecture is not supported." && exit 1; \
2929 fi
Original file line number Diff line number Diff line change 11module github.com/redhat-best-practices-for-k8s/oct
22
3- go 1.23.1
3+ go 1.23.2
44
55require (
66 github.com/Masterminds/semver/v3 v3.3.0
You can’t perform that action at this time.
0 commit comments