Skip to content
New issue

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

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

Already on GitHub? # to your account

ci: bump the Go version to match Pebble #1285

Merged
merged 1 commit into from
Jul 17, 2024
Merged
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
Bump the Go version to match Pebble.
  • Loading branch information
tonyandrewmeyer committed Jul 17, 2024
commit ce5761518380b6880d6af68b9b80ceb4cbc0493d
4 changes: 2 additions & 2 deletions .github/workflows/framework-tests.yaml
Original file line number Diff line number Diff line change
@@ -75,10 +75,10 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Set up Go 1.20
- name: Set up Go
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems to me that there's no benefit in repeating the version here and it's just an easy place for it to get out of sync with the actual version just below.

uses: actions/setup-go@v5
with:
go-version: "1.20"
go-version: "1.22"

- name: Install tox
run: pip install tox~=4.2
Loading