Skip to content

Commit

Permalink
Bumping go version to 1.20.7 and carvel tool action name correction
Browse files Browse the repository at this point in the history
Signed-off-by: sethiyash <yashsethiya97@gmail.com>
  • Loading branch information
sethiyash committed Aug 17, 2023
1 parent 39dcbe7 commit 6e4247d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.20.5
go-version: 1.20.7
- uses: actions/checkout@v3.3.0
with:
fetch-depth: '0'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kind-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3 # default version of go is 1.10
with:
go-version: 1.20.5
go-version: 1.20.7
- name: Install Carvel Tools
uses: vmware-tanzu/carvel-setup-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
only: ytt, kapp, kbld
ytt: v0.40.1
kapp: v0.47.0
kapp: v0.48.0
kbld: v0.34.0
# Run benchmark with `go test -bench` and stores the output to a file
- name: Install sg and run e2e tests on kind
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20.5
go-version: 1.20.7
- name: Install Carvel Tools
uses: vmware-tanzu/carvel-setup-action@v1
uses: carvel-dev/setup-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
only: ytt, kapp, kbld, imgpkg, kctrl, vendir
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.20.5
go-version: 1.20.7
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Carvel Tools
uses: vmware-tanzu/carvel-setup-action@v1
uses: carvel-dev/setup-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
only: ytt, kapp, kbld
ytt: v0.40.1
kapp: v0.47.0
kapp: v0.48.0
kbld: v0.34.0
- name: Run Tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: 1.20.5
go-version: 1.20.7
- name: Build the secretgen-controller artifacts
run: |
curl -L https://carvel.dev/install.sh | bash
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM golang:1.20.5 AS deps
FROM --platform=$BUILDPLATFORM golang:1.20.7 AS deps

ARG TARGETOS TARGETARCH SGCTRL_VER=development
WORKDIR /workspace
Expand Down

0 comments on commit 6e4247d

Please sign in to comment.