File tree Expand file tree Collapse file tree 12 files changed +17
-17
lines changed
automate-scaffolding-go/habitat Expand file tree Collapse file tree 12 files changed +17
-17
lines changed Original file line number Diff line number Diff line change @@ -42,10 +42,10 @@ log_section_start "Installing License Scout"
4242gem install license_scout -v 2.5.1
4343log " Finished Installing License Scout"
4444
45- log_section_start " Installing Go 1.24.3 "
46- hab pkg install --force --binlink core/go1_24/1.24.3 --channel LTS-2024 && rm -rf /hab/cache && mkdir -p " $GOPATH /src" " $GOPATH /bin"
45+ log_section_start " Installing Go 1.24.4 "
46+ hab pkg install --force --binlink core/go1_24/1.24.4 --channel LTS-2024 && rm -rf /hab/cache && mkdir -p " $GOPATH /src" " $GOPATH /bin"
4747go version
48- log " Finished Installing Go 1.24.3 "
48+ log " Finished Installing Go 1.24.4 "
4949
5050log_section_start " Installing Chef UI Library dependencies"
5151pushd components/chef-ui-library
Original file line number Diff line number Diff line change 1616 - name : Setup Go
1717 uses : actions/setup-go@v2
1818 with :
19- go-version : ' 1.24.3 '
19+ go-version : ' 1.24.4 '
2020 - name : Test and coverage
2121 run : tools/go_coverage_report.sh
2222 - name : SonarQube Scan
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ function load_scan_jobs() {
146146 # shellcheck disable=SC1091
147147 source dev/secrets-env.sh
148148 pushd dev-docs/adding-data & > /dev/null
149- iinstall_if_missing core/go1_24/1.24.3 go
149+ iinstall_if_missing core/go1_24/1.24.4 go
150150 go run add_scanjobs.go
151151 popd & > /dev/null
152152 fi
Original file line number Diff line number Diff line change 1- 1.24.3
1+ 1.24.4
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ pkg_deps=(
2828 core/curl # health_check hook
2929)
3030
31- pkg_build_deps=(core/go1_24/1.24.3 core/git core/gcc)
31+ pkg_build_deps=(core/go1_24/1.24.4 core/git core/gcc)
3232
3333pkg_scaffolding=" ${local_scaffolding_origin:- chef} /automate-scaffolding"
3434
Original file line number Diff line number Diff line change @@ -11,8 +11,8 @@ pkg_version="0.1.0"
1111pkg_license=(' Chef-MLSA' )
1212pkg_source=nosuchfile.tar.gz
1313pkg_deps=(
14- core/go1_24/1.24.3 # This is only pinned to force a scaffolding rebuild to this version
15- core/git/2.39.1
14+ core/go1_24/1.24.4 # This is only pinned to force a scaffolding rebuild to this version
15+ core/git
1616
1717)
1818
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pkg_version="0.1.0"
66pkg_origin=chef
77pkg_maintainer=" Chef Software Inc. <support@chef.io>"
88pkg_license=(' Apache-2.0' )
9- pkg_build_deps=(core/go1_24/1.24.3 core/git core/gcc)
9+ pkg_build_deps=(core/go1_24/1.24.4 core/git core/gcc)
1010pkg_bin_dirs=(bin)
1111
1212pkg_deps=(
Original file line number Diff line number Diff line change 11module github.com/chef/automate
22
3- go 1.24.3
3+ go 1.24.4
44
55require (
66 github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
Original file line number Diff line number Diff line change @@ -8,10 +8,10 @@ install_chefdk() {
88}
99
1010start_requestbin () {
11- go install golang.org/dl/go1.24.3 @latest
12- go1.24.3 download
11+ go install golang.org/dl/go1.24.4 @latest
12+ go1.24.4 download
1313 rm /usr/local/go/bin/go
14- cp /go/bin/go1.24.3 /usr/local/go/bin/go
14+ cp /go/bin/go1.24.4 /usr/local/go/bin/go
1515 export GOBIN=" /go/bin"
1616 go install integration/helpers/requestbin/requestbin.go
1717 cat > /etc/systemd/system/requestbin.service << EOF
Original file line number Diff line number Diff line change 11module github.com/chef/automate/protovendor
22
3- go 1.24.3
3+ go 1.24.4
44
55require (
66 github.com/envoyproxy/protoc-gen-validate v0.4.1
You can’t perform that action at this time.
0 commit comments