Skip to content

Commit

Permalink
Merge pull request #179 from matttrach/auto-dependency-update-7040
Browse files Browse the repository at this point in the history
Adding dependabot to keep dockerfiles up to date
  • Loading branch information
matttrach authored Mar 31, 2023
2 parents 2fb5f94 + 185eb61 commit 84b7882
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
version: 2
updates:

# Maintain dependencies for Docker Images
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "docker"
directory: "/package"
schedule:
interval: "weekly"

4 changes: 4 additions & 0 deletions .golangci.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
{
"linters": "revive",
"text": "should have comment"
},
{
"linters": "revive",
"text": "unused-parameter"
}
]
}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.dapper
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apk -U add bash git gcc musl-dev docker vim less file curl wget ca-certifica
RUN GOPROXY=direct go install golang.org/x/tools/cmd/goimports@gopls/v0.8.2

RUN if [ "${ARCH}" == "amd64" ]; then \
curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/v1.50.1/install.sh | sh -s; \
curl -sL https://raw.githubusercontent.com/golangci/golangci-lint/v1.52.2/install.sh | sh -s; \
go install sigs.k8s.io/kustomize/kustomize/[email protected]; \
fi

Expand Down

0 comments on commit 84b7882

Please sign in to comment.