Skip to content

Commit 48ed001

Browse files
Patch release v0.2.3 (#129)
Co-authored-by: Dustin Hemmerling <[email protected]>
1 parent 6f90059 commit 48ed001

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/build.yml

+7-5
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,27 @@ jobs:
1111
build:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
1514

1615
- name: Set up Go
17-
uses: actions/setup-go@v2
16+
uses: actions/setup-go@v3
1817
with:
1918
go-version: 1.17
2019

20+
- name: checkout
21+
uses: actions/checkout@v3
22+
2123
- name: Unit tests
2224
run: make test
2325

2426
- name: Upload code coverage
25-
uses: codecov/codecov-action@v2
27+
uses: codecov/codecov-action@v3
2628
with:
2729
files: cover.out
2830

2931
- name: golangci-lint
30-
uses: golangci/golangci-lint-action@v2
32+
uses: golangci/golangci-lint-action@v3
3133
with:
32-
version: v1.43
34+
version: v1.45.2
3335
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
3436
skip-pkg-cache: true
3537
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ tidy:
6262

6363
golangci-lint: ## Download golangci-lint
6464
@mkdir -p $(shell pwd)/bin
65-
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell pwd)/bin v1.43.0
65+
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(shell pwd)/bin v1.45.2
6666

6767
.PHONY: lint
6868
lint: golangci-lint ## Run linter

config/controller_install_release/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ bases:
44
images:
55
- name: controller
66
newName: ghcr.io/aws/aws-cloud-map-mcs-controller-for-k8s
7-
newTag: v0.2.2
7+
newTag: v0.2.3

0 commit comments

Comments
 (0)