Skip to content

Commit

Permalink
fix: update build deps
Browse files Browse the repository at this point in the history
  • Loading branch information
jmattheis committed Sep 16, 2023
1 parent 8c0f7a9 commit b2b5488
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Expand Up @@ -7,10 +7,10 @@ jobs:
steps:
- uses: actions/setup-go@v2
with:
go-version: 1.19.x
go-version: 1.21.x
- uses: actions/setup-node@v1
with:
node-version: '16'
node-version: '20'
- uses: actions/cache@v2
with:
path: ~/go/pkg/mod
Expand Down
2 changes: 1 addition & 1 deletion GO_VERSION
@@ -1 +1 @@
1.19.1
1.21.1
1 change: 1 addition & 0 deletions Makefile
Expand Up @@ -7,6 +7,7 @@ DOCKER_BUILD_IMAGE=gotify/build
DOCKER_WORKDIR=/proj
DOCKER_RUN=docker run --rm -v "$$PWD/.:${DOCKER_WORKDIR}" -v "`go env GOPATH`/pkg/mod/.:/go/pkg/mod:ro" -w ${DOCKER_WORKDIR}
DOCKER_GO_BUILD=go build -mod=readonly -a -installsuffix cgo -ldflags "$$LD_FLAGS"
export NODE_OPTIONS=$(shell if node --help | grep -q -- "--openssl-legacy-provider"; then echo --openssl-legacy-provider; fi)

test: test-coverage test-race test-js
check: check-go check-swagger check-js
Expand Down

0 comments on commit b2b5488

Please sign in to comment.