Skip to content

Commit

Permalink
chore: update dependencies
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Trost <[email protected]>
  • Loading branch information
galexrt committed Jul 23, 2024
1 parent 8343072 commit 680682f
Show file tree
Hide file tree
Showing 7 changed files with 385 additions and 377 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: actions/setup-go@v5
with:
go-version: '^1.22.4'
go-version: '^1.22.5'

- name: Run Go Tests
run: go test ./...
Expand All @@ -34,7 +34,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 20.14.0
node-version: 20.15.1
cache: pnpm

- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.15.0
20.15.1
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# syntax=docker/dockerfile:1

# Frontend Build
FROM docker.io/library/node:20.15.0-alpine3.20 AS nodebuilder
FROM docker.io/library/node:20.15.1-alpine3.20 AS nodebuilder
ARG NUXT_UI_PRO_LICENSE
WORKDIR /app
COPY . ./
Expand All @@ -22,7 +22,7 @@ RUN apt-get update && \
make build-go

# Final Image
FROM docker.io/library/alpine:3.20.1
FROM docker.io/library/alpine:3.20.2
WORKDIR /app
RUN apk --no-cache add ca-certificates tini tzdata && \
mkdir -p ./.output/public
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ services:
# Used for testing only
mysql:
container_name: mysql
image: docker.io/library/mysql:8.4.1
image: docker.io/library/mysql:8.4.2
command:
- "mysqld"
- "--innodb-ft-min-token-size=2"
Expand Down
2 changes: 1 addition & 1 deletion internal/tests/servers/dbmanager.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func (m *dbServer) Setup() error {
m.resource, err = m.pool.RunWithOptions(
&dockertest.RunOptions{
Repository: "docker.io/library/mysql",
Tag: "8.4.1",
Tag: "8.4.2",
Env: []string{
"MYSQL_ROOT_PASSWORD=secret",
"MYSQL_USER=fivenet",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
"protoc-gen-js": "3.21.2",
"sass": "1.77.8",
"tailwindcss": "3.4.6",
"typescript": "5.5.3",
"typescript": "5.5.4",
"vue": "3.4.33",
"vue-i18n-routing": "1.2.0",
"vue-tsc": "2.0.28"
Expand Down
Loading

0 comments on commit 680682f

Please sign in to comment.