Skip to content

Commit

Permalink
TECH Switch to Go 1.22
Browse files Browse the repository at this point in the history
  • Loading branch information
sibprogrammer committed Apr 16, 2024
1 parent 7728929 commit f63a420
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ^1.21
go-version: ^1.22

- name: Release
uses: goreleaser/goreleaser-action@v4
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: ^1.21
go-version: ^1.22

- name: Test
run: make test

- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ environment variable. To test it one can use the following command:
plesk version
```

Alternative way if you have Go 1.21+ installed:
Alternative way if you have Go 1.22+ installed:

```
go install github.com/plesk/pleskapp/plesk
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

module github.com/plesk/pleskapp/plesk

go 1.21
go 1.22

require (
github.com/go-resty/resty/v2 v2.12.0
Expand Down

0 comments on commit f63a420

Please sign in to comment.