Skip to content

Commit

Permalink
upgrade to go 1.14 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjkaliski authored Jun 28, 2020
1 parent 397f4f8 commit 7342cfd
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ workflow "Go" {
}
action "gofmt" {
uses = "sjkaliski/go-github-actions/fmt@v0.5.0"
uses = "sjkaliski/go-github-actions/fmt@v1.0.0"
needs = "previous-action"
secrets = ["GITHUB_TOKEN"]
Expand All @@ -41,7 +41,7 @@ workflow "Go" {
}
action "golint" {
uses = "sjkaliski/go-github-actions/lint@v0.5.0"
uses = "sjkaliski/go-github-actions/lint@v1.0.0"
needs = "previous-action"
secrets = ["GITHUB_TOKEN"]
Expand Down
2 changes: 1 addition & 1 deletion fmt/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13
FROM golang:1.14

LABEL "com.github.actions.name"="go fmt"
LABEL "com.github.actions.description"="Run go fmt"
Expand Down
2 changes: 1 addition & 1 deletion fmt/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ workflow "Go" {
}
action "gofmt" {
uses = "sjkaliski/go-github-actions/fmt@v0.5.0"
uses = "sjkaliski/go-github-actions/fmt@v1.0.0"
needs = "previous-action"
secrets = ["GITHUB_TOKEN"]
Expand Down
2 changes: 1 addition & 1 deletion lint/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.13
FROM golang:1.14

LABEL "com.github.actions.name"="golint"
LABEL "com.github.actions.description"="Run golint"
Expand Down
2 changes: 1 addition & 1 deletion lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ workflow "Go" {
}
action "golint" {
uses = "sjkaliski/go-github-actions/lint@v0.5.0"
uses = "sjkaliski/go-github-actions/lint@v1.0.0"
needs = "previous-action"
secrets = ["GITHUB_TOKEN"]
Expand Down

0 comments on commit 7342cfd

Please sign in to comment.