1212 name : Check Dockerfiles
1313 runs-on : ubuntu-latest
1414 steps :
15- - uses : actions/checkout@v4
15+ - uses : actions/checkout@v7
1616 - uses : hadolint/hadolint-action@v3.1.0
1717 with :
1818 dockerfile : Dockerfile
@@ -21,11 +21,11 @@ jobs:
2121 runs-on : ubuntu-24.04
2222 steps :
2323 - name : Set up Go 1.x
24- uses : actions/setup-go@v5
24+ uses : actions/setup-go@v6
2525 with :
2626 go-version : " 1.25.0"
2727 - name : Check out code into the Go module directory
28- uses : actions/checkout@v4
28+ uses : actions/checkout@v7
2929 with :
3030 fetch-depth : 0
3131 - name : Run Gosec Security Scanner
3535 env :
3636 GOROOT : " "
3737 - name : golangci-lint
38- uses : golangci/golangci-lint-action@v8
38+ uses : golangci/golangci-lint-action@v9
3939 with :
4040 args : --timeout=10m
4141 only-new-issues : true
@@ -51,15 +51,15 @@ jobs:
5151 OPERATOR_SDK_VERSION : v1.39.1
5252 steps :
5353 - name : Set up Go 1.x
54- uses : actions/setup-go@v5
54+ uses : actions/setup-go@v6
5555 with :
5656 go-version : " 1.25.0"
5757 - name : Check out code into the Go module directory
58- uses : actions/checkout@v4
58+ uses : actions/checkout@v7
5959 with :
6060 fetch-depth : 0
6161 - name : Cache Operator SDK ${{ env.OPERATOR_SDK_VERSION }}
62- uses : actions/cache@v4
62+ uses : actions/cache@v6
6363 id : cache-operator-sdk
6464 with :
6565 path : ~/cache
8181 make kustomize controller-gen
8282 - name : Cache go modules
8383 id : cache-mod
84- uses : actions/cache@v4
84+ uses : actions/cache@v6
8585 with :
8686 path : ~/go/pkg/mod
8787 key : ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
@@ -131,7 +131,7 @@ jobs:
131131 run : |
132132 make test
133133 - name : Upload coverage to Codecov
134- uses : codecov/codecov-action@v5
134+ uses : codecov/codecov-action@v7
135135 with :
136136 token : ${{ secrets.CODECOV_TOKEN }}
137137 flags : unit-tests
@@ -140,7 +140,7 @@ jobs:
140140 runs-on : ubuntu-24.04
141141 steps :
142142 - name : Check out code
143- uses : actions/checkout@v4
143+ uses : actions/checkout@v7
144144 with :
145145 fetch-depth : 0
146146 ref : ${{ github.event.pull_request.head.sha }}
@@ -151,7 +151,7 @@ jobs:
151151 kube-linter :
152152 runs-on : ubuntu-latest
153153 steps :
154- - uses : actions/checkout@v4
154+ - uses : actions/checkout@v7
155155 # This prepares directory where github/codeql-action/upload-sarif@v1 looks up report files by default.
156156 - name : Create ./.kube-linter/ for deployment files
157157 shell : bash
0 commit comments