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

update go.mod #19

Merged
merged 2 commits into from
Sep 11, 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
4 changes: 2 additions & 2 deletions .github/workflows/go-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
uses: "actions/checkout@v4"

- name: "Setup Go Env"
uses: "actions/setup-go@v4"
uses: "actions/setup-go@v5"
with:
cache: true
go-version: "1.21.1"
go-version: "1.22.5"

- name: "Check Go Dependencies"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-redis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on: "push"
jobs:
go-redis:
runs-on: "ubuntu-latest"
container: "golang:1.21-alpine"
container: "golang:1.22-alpine"

services:
redis:
Expand Down
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
module github.com/xh3b4sd/redigo

go 1.21
go 1.22

require (
github.com/FZambia/sentinel v1.1.1
github.com/go-redsync/redsync/v4 v4.9.0
github.com/gomodule/redigo v1.8.9
github.com/go-redsync/redsync/v4 v4.13.0
github.com/gomodule/redigo v1.9.2
github.com/rafaeljusto/redigomock v2.4.0+incompatible
github.com/xh3b4sd/breakr v0.1.0
github.com/xh3b4sd/tracer v0.11.1
Expand Down
Loading