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 1616 - name : Set up Go 1.22
1717 uses : actions/setup-go@v5
1818 with :
19- go-version : 1.22.1
19+ go-version : 1.22.2
2020
2121 - name : Disable default go problem matcher
2222 run : echo "::remove-matcher owner=go::"
Original file line number Diff line number Diff line change 2020 - name : Set up Go 1.22
2121 uses : actions/setup-go@v5
2222 with :
23- go-version : 1.22.1
23+ go-version : 1.22.2
2424
2525 - name : Disable default go problem matcher
2626 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.1 .linux-amd64.tar.gz
15- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.1 .linux-arm64.tar.gz
14+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.22.2 .linux-amd64.tar.gz
15+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.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.22.1 .linux-amd64.tar.gz; \
22+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.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.22.1 .linux-arm64.tar.gz; \
26+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.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.22.1 .linux-amd64.tar.gz
15- ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.1 .linux-arm64.tar.gz
14+ ENV GO_BIN_URL_x86_64=${GO_DL_URL}/go1.22.2 .linux-amd64.tar.gz
15+ ENV GO_BIN_URL_aarch64=${GO_DL_URL}/go1.22.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.22.1 .linux-amd64.tar.gz; \
22+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.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.22.1 .linux-arm64.tar.gz; \
26+ && tar -C /usr/local -xzf ${TEMP_DIR}/go1.22.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/test-network-function/oct
22
3- go 1.22.1
3+ go 1.22.2
44
55require (
66 github.com/Masterminds/semver/v3 v3.2.1
You can’t perform that action at this time.
0 commit comments