Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

go.mod: Tidy with Go 1.19 #475

Merged
merged 1 commit into from
Aug 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/stage-lint.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.x
- run: go mod tidy -compat=1.17
- run: go mod tidy -go=1.19
- name: Fail if god mod not tidy
run: |
if [ -n "$(git status --porcelain)" ]; then
Expand Down
5 changes: 0 additions & 5 deletions .github/workflows/stage-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,6 @@ jobs:
with:
repo: cue-lang/cue
version: v0.4.3
- name: Fixup go.mod if we're not targeting 1.17x
run: |
if [ "${{ matrix.go-version }}" != "1.17.x" ]; then
go mod tidy -compat=1.17
fi
- name: Test
run: make test
strategy:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/pulumi/pulumi-yaml

go 1.17
go 1.19

require (
github.com/blang/semver v3.5.1+incompatible
Expand Down
Loading