Skip to content

Commit e641dc2

Browse files
authored
fix: update all dependencies everywhere (#119)
1 parent 04e77fd commit e641dc2

24 files changed

+580
-441
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
with:
7777
token: ${{ secrets.CODECOV_TOKEN }}
7878

79-
- uses: codecov/codecov-action@v4
79+
- uses: codecov/codecov-action@v5
8080
with:
8181
token: ${{ secrets.CODECOV_TOKEN }}
8282

.github/workflows/renovate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v4
1212

13-
- uses: renovatebot/github-action@v40.3.6
13+
- uses: renovatebot/github-action@v43.0.0
1414
with:
1515
configurationFile: renovate.json
1616
token: ${{ secrets.RENOVATE_TOKEN }}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.24.2-alpine AS builder
1+
FROM golang:1.24.4-alpine AS builder
22

33
WORKDIR $GOPATH/src/github.com/satisfactorymodding/smr-api/
44

@@ -13,7 +13,7 @@ COPY . .
1313
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -v -a -installsuffix cgo -o /go/bin/api cmd/api/serve.go
1414

1515

16-
FROM golang:1.24.2-alpine
16+
FROM golang:1.24.4-alpine
1717
COPY --from=builder /go/bin/api /api
1818
WORKDIR /app
1919
COPY static /app/static

api/api.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ import (
1919
"github.com/99designs/gqlgen/graphql/playground"
2020
"github.com/Vilsol/slox"
2121
"github.com/felixge/fgprof"
22+
"github.com/go-playground/validator/v10"
2223
"github.com/labstack/echo-contrib/pprof"
2324
"github.com/labstack/echo/v4"
2425
"github.com/labstack/echo/v4/middleware"
@@ -34,7 +35,6 @@ import (
3435
sdktrace "go.opentelemetry.io/otel/sdk/trace"
3536
semconv "go.opentelemetry.io/otel/semconv/v1.7.0"
3637
"go.opentelemetry.io/otel/trace"
37-
"gopkg.in/go-playground/validator.v9"
3838

3939
"github.com/satisfactorymodding/smr-api/auth"
4040
"github.com/satisfactorymodding/smr-api/config"

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ services:
6363
- "4040:4040"
6464

6565
temporal:
66-
image: temporalio/auto-setup:1.24.2
66+
image: temporalio/auto-setup:1.27.2
6767
depends_on:
6868
- postgres
6969
environment:

0 commit comments

Comments
 (0)