Skip to content

Commit

Permalink
chore(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Feb 6, 2024
1 parent eef9a7a commit 04865b0
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: codfish/semantic-release-action@v1.9.0
- uses: codfish/semantic-release-action@v1.10.0
if: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# build
FROM golang:1.15.7-alpine as builder
FROM golang:1.21.7-alpine as builder
RUN apk add --no-cache git gcc musl-dev make
ENV GO111MODULE=on
WORKDIR /go/src/moul.io/graphman
COPY . ./
RUN make install

# minimalist runtime
FROM alpine:3.14.0
FROM alpine:3.19.1
COPY --from=builder /go/bin/pertify /bin/
6 changes: 3 additions & 3 deletions cmd/pertify/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ module moul.io/cmd/pertify
go 1.13

require (
github.com/pkg/errors v0.8.1
gopkg.in/urfave/cli.v2 v2.0.0-20190806201727-b62605953717
gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22
github.com/pkg/errors v0.9.1
gopkg.in/urfave/cli.v2 v2.27.1
gopkg.in/yaml.v3 v3.0.1
moul.io/graphman v1.6.0
moul.io/graphman/viz v0.0.0
)
Expand Down
8 changes: 4 additions & 4 deletions lambda/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ module moul.io/graphman/lambda
go 1.13

require (
github.com/aws/aws-lambda-go v1.13.2
github.com/pkg/errors v0.8.1
gopkg.in/yaml.v3 v3.0.0-20190924164351-c8b7dadae555
github.com/aws/aws-lambda-go v1.46.0
github.com/pkg/errors v0.9.1
gopkg.in/yaml.v3 v3.0.1
moul.io/graphman v1.6.0
moul.io/graphman/viz v1.5.0
moul.io/graphman/viz v1.6.0
)

replace (
Expand Down
2 changes: 1 addition & 1 deletion web/pertify/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ <h1>Pertify</h1>
</footer>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="/pertify/examples.js"></script>
<script>
function generate() {
Expand Down

0 comments on commit 04865b0

Please sign in to comment.