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

Move to go 1.22 #23

Merged
merged 1 commit into from
Feb 7, 2024
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/func-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- cron: '30 06 * * *'

env:
GO_VERSION: 1.21.6
GO_VERSION: 1.22.0
DOCKER_API_VERSION: 1.43

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [ master ]

env:
GO_VERSION: 1.21.6
GO_VERSION: 1.22.0

permissions:
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jepsen-cluster-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- cron: '30 06 * * *'

env:
GO_VERSION: 1.21.6
GO_VERSION: 1.22.0

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/jepsen-sentinel-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- cron: '30 06 * * *'

env:
GO_VERSION: 1.21.6
GO_VERSION: 1.22.0

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
branches: [ master ]

env:
GO_VERSION: 1.21.6
GO_VERSION: 1.22.0

jobs:
unittest:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ It uses a patched redis version to make a cluster or sentinel-like setup less pr

## Try it out

* You will need a linux vm with gnu make, docker, docker-compose and go >1.21 installed.
* You will need a linux vm with gnu make, docker, docker-compose and go >1.22 installed.
* Use `make start_sentinel_env` to start an environment with senticache
* Or `make start_cluster_env` to start an environment with single shard of clustered setup
* Run `make clean` to drop containers and network
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/yandex/rdsync

go 1.21
go 1.22

require (
github.com/cenkalti/backoff/v4 v4.2.1
Expand Down
Loading