This repository was archived by the owner on Oct 6, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Expand file tree Collapse file tree 3 files changed +38
-2
lines changed Original file line number Diff line number Diff line change 2222 - name : Run golangci-lint
2323 uses : golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
2424 with :
25- version : v1.63.4
25+ version : v1.64.6
2626 args : --verbose
2727 - uses : codecov/codecov-action@a2f73fb6db51fcd2e0aa085dfb36dea90c5e3689 # v5.0.2
2828 with :
Original file line number Diff line number Diff line change 1+ name : vulncheck
2+
3+ on :
4+ push :
5+ branches :
6+ - ' master'
7+ - ' release-*'
8+ pull_request :
9+ branches :
10+ - ' master'
11+ - ' release-*'
12+
13+ env :
14+ # Golang version to use across CI steps
15+ # renovate: datasource=golang-version packageName=golang
16+ GOLANG_VERSION : ' 1.24.1'
17+
18+ concurrency :
19+ group : ${{ github.workflow }}-${{ github.ref }}
20+ cancel-in-progress : true
21+
22+ permissions :
23+ contents : read
24+
25+ jobs :
26+ vulncheck :
27+ runs-on : ubuntu-latest
28+ steps :
29+ - name : Checkout code
30+ uses : actions/checkout@8410ad0602e1e429cee44a835ae9f77f654a6694 # v4.0.0
31+
32+ - name : Run govulncheck
33+ uses : golang/govulncheck-action@v1
34+ with :
35+ go-version-input : ${{ env.GOLANG_VERSION }}
36+ repo-checkout : false
Original file line number Diff line number Diff line change 11module github.com/argoproj/gitops-engine
22
3- go 1.23.5
3+ go 1.24.1
44
55require (
66 github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
You can’t perform that action at this time.
0 commit comments