Skip to content

Commit

Permalink
Merge pull request #15 from utilitywarehouse/as-dependabot
Browse files Browse the repository at this point in the history
added dependabot and updated dependencies
  • Loading branch information
asiyani authored Mar 25, 2022
2 parents a6c21ad + e29a023 commit e67b269
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 29 deletions.
15 changes: 15 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# See GitHub's docs for more information on this file:
# https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
# Maintain dependencies for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"

# Maintain dependencies for Go modules
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.16-alpine AS build
FROM golang:1.17-alpine AS build
WORKDIR /go/src/github.com/utilitywarehouse/ssh-key-manager
COPY . /go/src/github.com/utilitywarehouse/ssh-key-manager
RUN apk --no-cache add git gcc musl-dev \
Expand Down
17 changes: 12 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
module github.com/utilitywarehouse/ssh-key-manager

go 1.16
go 1.17

require (
cloud.google.com/go v0.85.0 // indirect
github.com/aws/aws-sdk-go v1.38.70
golang.org/x/net v0.0.0-20210614182718-04defd469f4e
golang.org/x/oauth2 v0.0.0-20210628180205-a41e5a781914
github.com/aws/aws-sdk-go v1.43.25
golang.org/x/net v0.0.0-20220225172249-27dd8689420f
golang.org/x/oauth2 v0.0.0-20220309155454-6242fa91716a
)

require (
cloud.google.com/go/compute v1.5.0 // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)
Loading

0 comments on commit e67b269

Please sign in to comment.