Skip to content

Commit

Permalink
Fix inst Make target for Go 1.21
Browse files Browse the repository at this point in the history
  • Loading branch information
pellared authored Oct 19, 2023
1 parent 8eac310 commit 21975ca
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'

- name: Build
run: make ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- uses: actions/setup-go@v4
with:
go-version: '1.20'
go-version: '1.21'

- run: make inst

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased](https://github.com/golang-templates/seed/compare/v0.18.0...HEAD)

### Fixed

- Fix `inst` Make target for Go 1.21. ([#231](https://github.com/golang-templates/seed/pull/231))

## [0.18.0](https://github.com/golang-templates/seed/releases/tag/v0.18.0)

### Changed
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ mod: ## go mod tidy
.PHONY: inst
inst: ## go install tools
$(call print-target)
cd tools && go install $(shell cd tools && go list -f '{{ join .Imports " " }}' -tags=tools)
cd tools && go install $(shell cd tools && go list -e -f '{{ join .Imports " " }}' -tags=tools)

.PHONY: gen
gen: ## go generate
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module github.com/golang-templates/seed

go 1.20
go 1.21
2 changes: 1 addition & 1 deletion tools/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/golang-templates/seed/build

go 1.18
go 1.21

require (
github.com/client9/misspell v0.3.4
Expand Down
62 changes: 62 additions & 0 deletions tools/go.sum

Large diffs are not rendered by default.

0 comments on commit 21975ca

Please sign in to comment.