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

Trying to fix the issue issue. This closes brotherlogic/githubcard#1025 #4151

Merged
merged 1 commit into from
May 21, 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/basicrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.18.1'
go-version: '1.22'

- name: Run build
run: go build github.com/${GITHUB_REPOSITORY}
Expand Down
55 changes: 29 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@
module github.com/brotherlogic/cdprocessor

go 1.19
go 1.21

toolchain go1.22.1

require (
github.com/brotherlogic/executor v0.0.0-20230927071811-cc390a0e4e08
github.com/brotherlogic/godiscogs v0.0.0-20230922000443-fb73651e941c
github.com/brotherlogic/goserver v0.0.0-20230726200050-779ae6811580
github.com/brotherlogic/keystore v0.0.0-20230930074414-931765b9f9a4
github.com/brotherlogic/recordcollection v0.0.0-20230929004354-8bc2e00c5334
github.com/brotherlogic/executor v0.0.0-20240517134650-86515ad3f2e0
github.com/brotherlogic/godiscogs v0.0.0-20240403143827-f1692f7a0410
github.com/brotherlogic/goserver v0.0.0-20240303220030-80da220f0393
github.com/brotherlogic/keystore v0.0.0-20240508161349-814b3200b126
github.com/brotherlogic/recordcollection v0.0.0-20240518231329-129a6531dba3
github.com/brotherlogic/versionserver v0.0.0-20221025154054-c9bcd41be2f2
github.com/prometheus/client_golang v1.17.0
golang.org/x/net v0.17.0
google.golang.org/grpc v1.58.2
google.golang.org/protobuf v1.31.0
github.com/prometheus/client_golang v1.19.1
golang.org/x/net v0.25.0
google.golang.org/grpc v1.64.0
google.golang.org/protobuf v1.34.1
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/brotherlogic/buildserver v0.0.0-20230929223132-4523ec115607 // indirect
github.com/brotherlogic/datastore v0.0.0-20230930023218-f35afe14c4eb // indirect
github.com/brotherlogic/discovery v0.0.0-20230923220958-97b28e0a236a // indirect
github.com/brotherlogic/dstore v0.0.0-20230923211754-650bc64881c3 // indirect
github.com/brotherlogic/githubcard v0.0.0-20230925175049-4cbe27cc122e // indirect
github.com/brotherlogic/gobuildslave v0.0.0-20230927044537-8894fad7567c // indirect
github.com/brotherlogic/lock v0.0.0-20230927082510-080bdda4a5fe // indirect
github.com/brotherlogic/logging v0.0.0-20230927015655-f2e51581379c // indirect
github.com/brotherlogic/buildserver v0.0.0-20240507174132-d8ef55633235 // indirect
github.com/brotherlogic/datastore v0.0.0-20240516182432-0ba32a162489 // indirect
github.com/brotherlogic/discovery v0.0.0-20240508133416-83bf887d8186 // indirect
github.com/brotherlogic/dstore v0.0.0-20240520142424-e826e294498b // indirect
github.com/brotherlogic/githubcard v0.0.0-20240521001930-2732af968e2c // indirect
github.com/brotherlogic/githubridge v0.2796.0 // indirect
github.com/brotherlogic/gobuildslave v0.0.0-20240516232214-6e96f0f59cd6 // indirect
github.com/brotherlogic/lock v0.0.0-20240516182021-1f478513e4f8 // indirect
github.com/brotherlogic/logging v0.0.0-20240516174940-fdf33d307920 // indirect
github.com/brotherlogic/monitor v0.0.0-20221025152653-c10877c5f9e6 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/cespare/xxhash/v2 v2.3.0 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/mitchellh/go-ps v1.0.0 // indirect
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/prometheus/client_model v0.6.1 // indirect
github.com/prometheus/common v0.53.0 // indirect
github.com/prometheus/procfs v0.15.0 // indirect
github.com/struCoder/pidusage v0.2.1 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230920204549-e6e6cdab5c13 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240520151616-dc85e6b867a5 // indirect
)
Loading
Loading