File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,14 +20,14 @@ jobs:
2020 - name : Set up Go
2121 uses : actions/setup-go@v6
2222 with :
23- go-version : ' 1.25 '
23+ go-version-file : ${{ github.workspace }}/go.mod
2424 - name : Build
2525 run : cd src/go; make linux-amd64; cd ../../
2626
2727 - name : Build the Docker image
2828 run : echo "FROM oraclelinux:9-slim" > Dockerfile; echo "RUN microdnf -y update" >> Dockerfile; echo "COPY bin/* /usr/bin/" >> Dockerfile; docker build . --file Dockerfile --tag percona-toolkit:${{ github.sha }}
2929 - name : Run Trivy vulnerability scanner
30- uses : aquasecurity/trivy-action@0.34 .0
30+ uses : aquasecurity/trivy-action@0.35 .0
3131 with :
3232 image-ref : ' percona-toolkit:${{ github.sha }}'
3333 format : ' table'
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ install_go() {
170170 # rm -rf /usr/local/go /usr/local/go1.8 /usr/local/go1.9
171171 # mv go1.9 /usr/local/
172172 # ln -s /usr/local/go1.9 /usr/local/go
173- GO_VERSION=1.25.5
173+ GO_VERSION=1.25.8
174174 if [ x" $ARCH " = " xx86_64" ]; then
175175 GO_ARCH=" amd64"
176176 elif [ x" $ARCH " = " xaarch64" ]; then
Original file line number Diff line number Diff line change 11module github.com/percona/percona-toolkit
22
3- go 1.25.5
3+ go 1.25.8
44
55require (
66 github.com/AlekSi/pointer v1.2.0
You can’t perform that action at this time.
0 commit comments