diff options
| author | Chongyi Zheng <git@zcy.dev> | 2024-02-25 21:55:48 -0500 |
|---|---|---|
| committer | Jacob Oaks <joaks@uber.com> | 2024-04-29 15:06:55 -0400 |
| commit | 6d9d500de946d5b992804b4208449fc741f68e26 (patch) | |
| tree | 0bf6537c804edb36ee9ba01a4021c58a94767241 /.github | |
| parent | 34cf1555dfab2bfa5d37142d86bf738554bbbc3a (diff) | |
| download | sally-6d9d500de946d5b992804b4208449fc741f68e26.tar.gz | |
Use Go 1.22
This upgrades sally to use Go 1.22.
Diffstat (limited to '')
| -rw-r--r-- | .github/workflows/go.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 8679609..691eef7 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -20,7 +20,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v5 with: - go-version: 1.21.x + go-version: 1.22.x cache: true - name: Build @@ -44,7 +44,7 @@ jobs: - uses: actions/setup-go@v5 name: Set up Go with: - go-version: 1.21.x + go-version: 1.22.x cache: false # managed by golangci-lint - uses: golangci/golangci-lint-action@v5 |