Skip to content

Commit

Permalink
DownstreamUpdates
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlogic committed Oct 20, 2023
1 parent 1026c4a commit 119519b
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 37 deletions.
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.19'

- name: Run build
run: go build github.com/${GITHUB_REPOSITORY}
Expand Down
16 changes: 16 additions & 0 deletions .github/workflows/close.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Close All Pull Requests

on:
schedule:
- cron: '*/5 * * * *'

jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: crondaemon/close-pr@v1
with:
# Optional. Post a issue comment just before closing a pull request.
comment: "We do not accept PRs. If you have any questions, please feel free to contact us."
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36 changes: 18 additions & 18 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,39 +3,39 @@ module github.com/brotherlogic/recordadder
go 1.18

require (
github.com/brotherlogic/dstore v0.0.0-20230923211754-650bc64881c3
github.com/brotherlogic/dstore v0.0.0-20231020041132-a9b977096542
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-20230923061824-d60649a19f70
github.com/brotherlogic/queue v0.0.0-20230926191706-69be141713c3
github.com/brotherlogic/recordbudget v0.0.0-20230920080718-0d74adf524b0
github.com/brotherlogic/recordcollection v0.0.0-20230922000930-33de01270cc4
github.com/brotherlogic/keystore v0.0.0-20231014003010-9fa4578d12ad
github.com/brotherlogic/queue v0.0.0-20231011232457-3757db0c1697
github.com/brotherlogic/recordbudget v0.0.0-20231011232108-82f9b6db1948
github.com/brotherlogic/recordcollection v0.0.0-20231019051056-a4b21e81ca3d
github.com/golang/protobuf v1.5.3
github.com/prometheus/client_golang v1.16.0
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/grpc v1.59.0
google.golang.org/protobuf v1.31.0
)

require (
github.com/beorn7/perks v1.0.1 // indirect
github.com/brotherlogic/buildserver v0.0.0-20230922221104-e48ebb5e07f8 // indirect
github.com/brotherlogic/datastore v0.0.0-20230923000359-d128ea1b371f // indirect
github.com/brotherlogic/discovery v0.0.0-20230923220958-97b28e0a236a // indirect
github.com/brotherlogic/githubcard v0.0.0-20230925175049-4cbe27cc122e // indirect
github.com/brotherlogic/gobuildslave v0.0.0-20230920042546-a51060e2c9fd // indirect
github.com/brotherlogic/lock v0.0.0-20230920071337-61f621315870 // indirect
github.com/brotherlogic/logging v0.0.0-20230920012520-acd94ed6d3cb // indirect
github.com/brotherlogic/buildserver v0.0.0-20231011232021-442a81f2eaab // indirect
github.com/brotherlogic/datastore v0.0.0-20230930023218-f35afe14c4eb // indirect
github.com/brotherlogic/discovery v0.0.0-20231020035437-aecf5e943b36 // indirect
github.com/brotherlogic/githubcard v0.0.0-20231020023837-d082f48b425b // indirect
github.com/brotherlogic/gobuildslave v0.0.0-20231020041201-2449c424b596 // indirect
github.com/brotherlogic/lock v0.0.0-20231011232557-0ee8155d539b // indirect
github.com/brotherlogic/logging v0.0.0-20231019235440-04a533bc7a5e // indirect
github.com/brotherlogic/monitor v0.0.0-20221025152653-c10877c5f9e6 // indirect
github.com/brotherlogic/versionserver v0.0.0-20221025154054-c9bcd41be2f2 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/mitchellh/go-ps v1.0.0 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/client_model v0.5.0 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.12.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
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b // indirect
)
Loading

0 comments on commit 119519b

Please sign in to comment.