Skip to content

Commit

Permalink
Merge pull request #152 from vmware-tanzu/nh-bump-go-1.19.3
Browse files Browse the repository at this point in the history
Bump Golang to 1.19.3
  • Loading branch information
neil-hickey authored Nov 22, 2022
2 parents 1eabfaf + cc2c5b3 commit 2227193
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: "1.18"
go-version: "1.19.3"
- uses: actions/checkout@v3.0.1
with:
fetch-depth: '0'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.45.2
args: -v
version: v1.50.1
args: -v
2 changes: 1 addition & 1 deletion .github/workflows/kind-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
fetch-depth: 0
- uses: actions/setup-go@v3 # default version of go is 1.10
with:
go-version: "1.18.3"
go-version: "1.19.3"
- name: Install Carvel Tools
uses: vmware-tanzu/carvel-setup-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
go-version: 1.19.3
- name: Install Carvel Tools
uses: vmware-tanzu/carvel-setup-action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-gh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@v3
with:
go-version: "1.18"
go-version: "1.19.3"
- name: Check out code into the Go module directory
uses: actions/checkout@v2
with:
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.18.3"
go-version: "1.19.3"
- 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.18.3 AS deps
FROM --platform=$BUILDPLATFORM golang:1.19.3 AS deps

ARG TARGETOS TARGETARCH SGCTRL_VER=development
WORKDIR /workspace
Expand Down
2 changes: 2 additions & 0 deletions pkg/satoken/token_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
// This file is a modified version of
// https://github.com/kubernetes/kubernetes/blob/master/pkg/kubelet/token/token_manager.go

// Package satoken provides a Service Account Token getter and cache for kubernetes
// ServiceAccount tokens.
package satoken

import (
Expand Down
3 changes: 3 additions & 0 deletions pkg/tracker/tracker.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
// Copyright 2021 VMware, Inc.
// SPDX-License-Identifier: Apache-2.0

// Package tracker allows "tracking" resources to monitor "tracked" resources.
// All "tracking" resources can then be found for a given "tracked" resource.
// Tracker is thread-safe.
package tracker

import (
Expand Down

0 comments on commit 2227193

Please sign in to comment.