Skip to content

Commit

Permalink
Bump versions
Browse files Browse the repository at this point in the history
Golang 1.19 is no longer supported.

Usa oldstable and stable aliases

Since actions/setup-go v3, we can use oldstable and
stable aliases to always refer to the two latest supported
versions of Go.

Signed-off-by: Aitor Perez Cedres <acedres@vmware.com>
  • Loading branch information
lukebakken committed Sep 21, 2023
1 parent 2eefdf1 commit 97a7db0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .ci/versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"erlang": "26.0.2",
"rabbitmq": "3.13.0-beta.3"
"erlang": "26.1",
"rabbitmq": "3.12.4"
}
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: '1.19'
go-version: 'stable'
check-latest: true
- uses: actions/checkout@v3
- uses: golangci/golangci-lint-action@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: true
matrix:
go-version: ['1.19', '1.20']
go-version: ['oldstable', 'stable']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.19', '1.20']
go-version: ['oldstable', 'stable']
services:
rabbitmq:
image: rabbitmq
Expand Down

0 comments on commit 97a7db0

Please sign in to comment.