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.22
2020 uses : actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
2121 with :
22- go-version : 1.22.4
22+ go-version : 1.22.5
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.22
2424 uses : actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
2525 with :
26- go-version : 1.22.4
26+ go-version : 1.22.5
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.22.4 .linux-amd64.tar.gz
15- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.4 .linux-arm64.tar.gz
14+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.22.5 .linux-amd64.tar.gz
15+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.5 .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.22.4 .linux-amd64.tar.gz; \
22+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.5 .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.22.4 .linux-arm64.tar.gz; \
26+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.5 .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.22.4 .linux-amd64.tar.gz
15- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.4 .linux-arm64.tar.gz
14+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.22.5 .linux-amd64.tar.gz
15+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.5 .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.22.4 .linux-amd64.tar.gz; \
22+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.5 .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.22.4 .linux-arm64.tar.gz; \
26+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.5 .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/test-network-function/oct
22
3- go 1.22.4
3+ go 1.22.5
44
55require (
66 github.com/Masterminds/semver/v3 v3.2.1
You can’t perform that action at this time.
0 commit comments