Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update all #278

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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.3-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.