Skip to content

Commit 63bf8ba

Browse files
committed
[DEPS] - Update Dependencies (#1619)
* [DEPS] - Update Dependencies Update the dependencies as we appear to have issues with dependabot * fix: adjusting the logic check * chore: updating the golang version to 1.23 * chore: bumping the verions of golang
1 parent 163f8db commit 63bf8ba

File tree

2,612 files changed

+502842
-68848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,612 files changed

+502842
-68848
lines changed

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup Go
1818
uses: actions/setup-go@v5
1919
with:
20-
go-version: "1.22"
20+
go-version: "1.23"
2121
- name: Unit Tests
2222
run: make test
2323

@@ -29,7 +29,7 @@ jobs:
2929
- name: Setup Go
3030
uses: actions/setup-go@v5
3131
with:
32-
go-version: "1.22"
32+
go-version: "1.23"
3333
- name: Check CLI
3434
run: make tnctl
3535

@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup Go
4242
uses: actions/setup-go@v5
4343
with:
44-
go-version: "1.22"
44+
go-version: "1.23"
4545
- name: Check Binaries
4646
run: |
4747
make preload
@@ -66,7 +66,7 @@ jobs:
6666
- name: Setup Go
6767
uses: actions/setup-go@v5
6868
with:
69-
go-version: "1.22"
69+
go-version: "1.23"
7070
- name: Linting
7171
run: |
7272
make golangci-lint
@@ -79,7 +79,7 @@ jobs:
7979
- name: Setup Go
8080
uses: actions/setup-go@v5
8181
with:
82-
go-version: "1.22"
82+
go-version: "1.23"
8383
- name: Format
8484
run: |
8585
make gofmt

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup Go
5252
uses: actions/setup-go@v5
5353
with:
54-
go-version: "1.22"
54+
go-version: "1.23"
5555
- name: Build CLI
5656
run: |
5757
export VERSION=${GITHUB_REF##*/}

.golangci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ linters:
1717
- errcheck
1818
- errname
1919
- errorlint
20-
- exportloopref
2120
- goconst
2221
- gocyclo
2322
- gosec

go.mod

Lines changed: 139 additions & 112 deletions
Large diffs are not rendered by default.

go.sum

Lines changed: 286 additions & 0 deletions
Large diffs are not rendered by default.

images/Dockerfile.cli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22 AS builder
1+
FROM golang:1.23 AS builder
22

33
ARG VERSION=latest
44
ARG LFLAGS

images/Dockerfile.controller

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22 AS builder
1+
FROM golang:1.23 AS builder
22

33
ARG VERSION=latest
44
ARG LFLAGS

images/Dockerfile.executor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.22 AS builder
1+
FROM golang:1.23 AS builder
22

33
ARG VERSION=latest
44
ARG LFLAGS

pkg/apis/terraform/v1alpha1/revision_types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ type RevisionSpec struct {
229229

230230
// GetInputDefaultValue returns the default value for the input
231231
func (r *RevisionSpec) GetInputDefaultValue(key string) (interface{}, bool, error) {
232-
if r.Inputs == nil || len(r.Inputs) == 0 {
232+
if r.Inputs == nil {
233233
return nil, false, nil
234234
}
235235

vendor/4d63.com/gocheckcompilerdirectives/checkcompilerdirectives/checkcompilerdirectives.go

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)