Skip to content

Commit

Permalink
go mod 1.19, go mod tidy, use fetch-depth: 0 for GH action checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
jessepeterson committed Sep 18, 2023
1 parent 1e8d008 commit 463d28d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 736 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/on-push-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
packages: write
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
fetch-depth: 0

- uses: docker/login-action@465a07811f14bebb1938fbed4728c6a1ff8901fc # v2.2.0
with:
Expand Down Expand Up @@ -68,6 +69,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
fetch-depth: 0

- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ jobs:
contents: write
steps:
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
fetch-depth: 0

- uses: actions/setup-go@93397bea11091df50f3d7e59dc26a7711a8bcfbe # v4.1.0
with:
Expand Down
12 changes: 11 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
module github.com/jessepeterson/mysqlscepserver

go 1.16
go 1.19

require (
github.com/go-kit/kit v0.13.0
github.com/go-sql-driver/mysql v1.7.1
github.com/micromdm/scep/v2 v2.1.0
)

require (
github.com/go-kit/log v0.2.0 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/gorilla/context v0.0.0-20160226214623-1ea25387ff6f // indirect
github.com/gorilla/mux v1.4.0 // indirect
github.com/groob/finalizer v0.0.0-20170707115354-4c2ed49aabda // indirect
github.com/pkg/errors v0.9.1 // indirect
go.mozilla.org/pkcs7 v0.0.0-20210730143726-725912489c62 // indirect
)

0 comments on commit 463d28d

Please sign in to comment.