Skip to content

Commit

Permalink
fix(deps): update all
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] committed Apr 24, 2024
1 parent 5de70a2 commit 1a1c8d3
Show file tree
Hide file tree
Showing 14 changed files with 12,427 additions and 11,719 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/go.yml
Expand Up @@ -33,19 +33,19 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}
- name: Cache Go modules
uses: actions/cache@v3.0.6
uses: actions/cache@v3.3.3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
- name: Run GoReleaser (Dry Run)
uses: goreleaser/goreleaser-action@v2.6.1
uses: goreleaser/goreleaser-action@v2.9.1
with:
version: latest
args: release --rm-dist --snapshot --skip-publish
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
matrix:
golang: [1.20.x]
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- name: Install Go
uses: actions/setup-go@v3
with:
Expand All @@ -92,12 +92,12 @@ jobs:
OS: macos-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v3.0.6
- uses: actions/cache@v3.3.3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
Expand Down Expand Up @@ -132,12 +132,12 @@ jobs:
OS: ubuntu-latest
GOLANG: ${{ matrix.golang }}
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.golang }}
- uses: actions/cache@v3.0.6
- uses: actions/cache@v3.3.3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Release-Notes Preview
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- run: |
git fetch --prune --unshallow --tags
- uses: snyk/release-notes-preview@v1.6.2
Expand All @@ -26,7 +26,7 @@ jobs:
name: Documentation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
with:
depth: 1
- uses: nosborn/github-action-markdown-cli@master
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v3.0.2
uses: actions/checkout@v3.6.0
-
name: Unshallow
run: git fetch --prune --unshallow
Expand All @@ -33,15 +33,15 @@ jobs:
-
name: Cache Go modules
if: steps.semantic.outputs.new-release-published == 'true'
uses: actions/cache@v3.0.6
uses: actions/cache@v3.3.3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ matrix.golang }}-v1-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-${{ matrix.golang }}-v1-
-
name: Run GoReleaser
if: steps.semantic.outputs.new-release-published == 'true'
uses: goreleaser/goreleaser-action@v2.6.1
uses: goreleaser/goreleaser-action@v2.9.1
with:
version: latest
args: release --rm-dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/web.yml
Expand Up @@ -21,13 +21,13 @@ jobs:
runs-on: ubuntu-latest
working_directory: web
steps:
- uses: actions/checkout@v3.0.2
- uses: actions/checkout@v3.6.0
- name: Use Node.js ${{ matrix.node }}
uses: actions/setup-node@v3.5.0
uses: actions/setup-node@v3.8.2
with:
node-version: ${{ matrix.node }}
- name: Cache Node.js modules
uses: actions/cache@v3.0.6
uses: actions/cache@v3.3.3
with:
path: web/node_modules
key: ${{ runner.OS }}-node-${{ matrix.node }}-v1-${{ hashFiles('web/yarn.lock') }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Expand Up @@ -20,7 +20,7 @@ ARG DEFAULT_TARGETS=moul/depviz-test
RUN GITHUB_CLIENT_ID=$GITHUB_CLIENT_ID API_URL=$API_URL NODE_ENV=$NODE_ENV DEFAULT_TARGETS=$DEFAULT_TARGETS npm run build

# go build
FROM golang:1.19.0-alpine as go-build
FROM golang:1.22.2-alpine as go-build
RUN apk add --update --no-cache git gcc musl-dev make
WORKDIR /go/src/moul.io/depviz
ENV GO111MODULE=on \
Expand All @@ -35,7 +35,7 @@ RUN make install


# minimalist runtime
FROM alpine:3.16
FROM alpine:3.19
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.name="depviz" \
org.label-schema.description="" \
Expand Down
56 changes: 28 additions & 28 deletions go.mod

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1a1c8d3

Please sign in to comment.