-
-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #87 from dokku/master
Release 0.10.0
- Loading branch information
Showing
8 changed files
with
51 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM golang:1.13.0-buster | ||
FROM golang:1.18.2-buster | ||
|
||
# hadolint ignore=DL3027 | ||
RUN apt-get update \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
module plugn | ||
|
||
go 1.12 | ||
go 1.18 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v1.1.0 | ||
github.com/dokku/duplex v0.0.0-20160916172127-5bc6cb8042f7 | ||
github.com/progrium/go-basher v5.1.5+incompatible | ||
github.com/progrium/plugin-demo v0.0.0-20160206152045-d94df2206a64 | ||
) | ||
|
||
require ( | ||
github.com/google/uuid v1.1.4 // indirect | ||
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/pborman/uuid v1.2.1 // indirect | ||
github.com/progrium/crypto v0.0.0-20141231035031-e04455474e32 // indirect | ||
github.com/progrium/go-basher v5.1.4+incompatible | ||
github.com/progrium/plugin-demo v0.0.0-20160206152045-d94df2206a64 | ||
golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters