Skip to content

Commit ff855ae

Browse files
sf-rendclaude
andcommitted
Merge main into go-chi/chi bump (resolve go.sum)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2 parents 1f969e5 + 195ca14 commit ff855ae

5 files changed

Lines changed: 100 additions & 100 deletions

File tree

.github/workflows/ci.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
- 4222:4222
4343
steps:
4444
- name: Checkout
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v6
4646
- name: Set up Go
47-
uses: actions/setup-go@v5
47+
uses: actions/setup-go@v6
4848
with:
4949
go-version: ${{ env.GO_VERSION }}
5050
cache: true
@@ -59,7 +59,7 @@ jobs:
5959
DATABASE_URL: postgres://test:test@localhost:5432/webencode_test?sslmode=disable
6060
NATS_URL: nats://localhost:4222
6161
- name: Upload backend coverage artifact
62-
uses: actions/upload-artifact@v4
62+
uses: actions/upload-artifact@v7
6363
with:
6464
name: go-coverage
6565
path: coverage.out
@@ -70,17 +70,17 @@ jobs:
7070
runs-on: ubuntu-latest
7171
steps:
7272
- name: Checkout
73-
uses: actions/checkout@v4
73+
uses: actions/checkout@v6
7474
- name: Set up Go
75-
uses: actions/setup-go@v5
75+
uses: actions/setup-go@v6
7676
with:
7777
go-version: ${{ env.GO_VERSION }}
7878
cache: true
7979
cache-dependency-path: |
8080
go.sum
8181
go.work.sum
8282
- name: Run golangci-lint
83-
uses: golangci/golangci-lint-action@v6
83+
uses: golangci/golangci-lint-action@v9
8484
with:
8585
version: latest
8686
args: --timeout=5m
@@ -94,9 +94,9 @@ jobs:
9494
working-directory: ui
9595
steps:
9696
- name: Checkout
97-
uses: actions/checkout@v4
97+
uses: actions/checkout@v6
9898
- name: Set up Node
99-
uses: actions/setup-node@v4
99+
uses: actions/setup-node@v6
100100
with:
101101
node-version: ${{ env.NODE_VERSION }}
102102
- name: Install dependencies
@@ -114,9 +114,9 @@ jobs:
114114
needs: [backend-test, backend-lint]
115115
steps:
116116
- name: Checkout
117-
uses: actions/checkout@v4
117+
uses: actions/checkout@v6
118118
- name: Set up Go
119-
uses: actions/setup-go@v5
119+
uses: actions/setup-go@v6
120120
with:
121121
go-version: ${{ env.GO_VERSION }}
122122
cache: true
@@ -126,7 +126,7 @@ jobs:
126126
- name: Build all backend binaries
127127
run: make build-all
128128
- name: Upload backend build artifacts
129-
uses: actions/upload-artifact@v4
129+
uses: actions/upload-artifact@v7
130130
with:
131131
name: backend-binaries
132132
path: build/
@@ -139,11 +139,11 @@ jobs:
139139
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
140140
steps:
141141
- name: Checkout
142-
uses: actions/checkout@v4
142+
uses: actions/checkout@v6
143143
- name: Set up Docker Buildx
144-
uses: docker/setup-buildx-action@v3
144+
uses: docker/setup-buildx-action@v4
145145
- name: Build Kernel image
146-
uses: docker/build-push-action@v6
146+
uses: docker/build-push-action@v7
147147
with:
148148
context: .
149149
file: deploy/compose/Dockerfile.kernel
@@ -152,7 +152,7 @@ jobs:
152152
cache-from: type=gha
153153
cache-to: type=gha,mode=max
154154
- name: Build Worker image
155-
uses: docker/build-push-action@v6
155+
uses: docker/build-push-action@v7
156156
with:
157157
context: .
158158
file: deploy/compose/Dockerfile.worker

.github/workflows/dependency-review.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
- name: Review dependency changes
1818
continue-on-error: true
19-
uses: actions/dependency-review-action@v4
19+
uses: actions/dependency-review-action@v5

go.mod

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
module github.com/rennerdo30/webencode
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/chromedp/cdproto v0.0.0-20250724212937-08a3db8b4327
77
github.com/chromedp/chromedp v0.14.2
88
github.com/coreos/go-oidc/v3 v3.17.0
99
github.com/go-chi/chi/v5 v5.2.5
1010
github.com/go-ldap/ldap/v3 v3.4.12
11-
github.com/golang-jwt/jwt/v5 v5.3.0
11+
github.com/golang-jwt/jwt/v5 v5.3.1
1212
github.com/golang-migrate/migrate/v4 v4.19.1
1313
github.com/google/uuid v1.6.0
1414
github.com/hashicorp/go-hclog v1.6.3
1515
github.com/hashicorp/go-plugin v1.7.0
1616
github.com/jackc/pgx/v5 v5.7.6
17-
github.com/minio/minio-go/v7 v7.0.97
18-
github.com/nats-io/nats-server/v2 v2.12.3
19-
github.com/nats-io/nats.go v1.48.0
17+
github.com/minio/minio-go/v7 v7.0.99
18+
github.com/nats-io/nats-server/v2 v2.12.4
19+
github.com/nats-io/nats.go v1.49.0
2020
github.com/pelletier/go-toml/v2 v2.2.4
2121
github.com/prometheus/client_golang v1.23.2
2222
github.com/spf13/viper v1.21.0
2323
github.com/stretchr/testify v1.11.1
24-
golang.org/x/oauth2 v0.34.0
25-
google.golang.org/api v0.258.0
26-
google.golang.org/grpc v1.78.0
24+
golang.org/x/oauth2 v0.36.0
25+
google.golang.org/api v0.269.0
26+
google.golang.org/grpc v1.79.2
2727
google.golang.org/protobuf v1.36.11
2828
)
2929

3030
require (
31-
cloud.google.com/go/auth v0.17.0 // indirect
31+
cloud.google.com/go/auth v0.18.2 // indirect
3232
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
3333
cloud.google.com/go/compute/metadata v0.9.0 // indirect
3434
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
@@ -52,21 +52,21 @@ require (
5252
github.com/gobwas/pool v0.2.1 // indirect
5353
github.com/gobwas/ws v1.4.0 // indirect
5454
github.com/golang/protobuf v1.5.4 // indirect
55-
github.com/google/go-tpm v0.9.7 // indirect
55+
github.com/google/go-tpm v0.9.8 // indirect
5656
github.com/google/s2a-go v0.1.9 // indirect
57-
github.com/googleapis/enterprise-certificate-proxy v0.3.7 // indirect
58-
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
57+
github.com/googleapis/enterprise-certificate-proxy v0.3.12 // indirect
58+
github.com/googleapis/gax-go/v2 v2.17.0 // indirect
5959
github.com/hashicorp/yamux v0.1.2 // indirect
6060
github.com/jackc/pgpassfile v1.0.0 // indirect
6161
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
6262
github.com/jackc/puddle/v2 v2.2.2 // indirect
63-
github.com/klauspost/compress v1.18.2 // indirect
63+
github.com/klauspost/compress v1.18.3 // indirect
6464
github.com/klauspost/cpuid/v2 v2.3.0 // indirect
6565
github.com/klauspost/crc32 v1.3.0 // indirect
6666
github.com/lib/pq v1.10.9 // indirect
6767
github.com/mattn/go-colorable v0.1.12 // indirect
6868
github.com/mattn/go-isatty v0.0.20 // indirect
69-
github.com/minio/crc64nvme v1.1.0 // indirect
69+
github.com/minio/crc64nvme v1.1.1 // indirect
7070
github.com/minio/highwayhash v1.0.4-0.20251030100505-070ab1a87a76 // indirect
7171
github.com/minio/md5-simd v1.1.2 // indirect
7272
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
@@ -87,20 +87,20 @@ require (
8787
github.com/spf13/pflag v1.0.10 // indirect
8888
github.com/stretchr/objx v0.5.2 // indirect
8989
github.com/subosito/gotenv v1.6.0 // indirect
90-
github.com/tinylib/msgp v1.3.0 // indirect
90+
github.com/tinylib/msgp v1.6.1 // indirect
9191
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
9292
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect
93-
go.opentelemetry.io/otel v1.38.0 // indirect
94-
go.opentelemetry.io/otel/metric v1.38.0 // indirect
95-
go.opentelemetry.io/otel/trace v1.38.0 // indirect
93+
go.opentelemetry.io/otel v1.39.0 // indirect
94+
go.opentelemetry.io/otel/metric v1.39.0 // indirect
95+
go.opentelemetry.io/otel/trace v1.39.0 // indirect
9696
go.yaml.in/yaml/v2 v2.4.2 // indirect
9797
go.yaml.in/yaml/v3 v3.0.4 // indirect
98-
golang.org/x/crypto v0.46.0 // indirect
99-
golang.org/x/net v0.48.0 // indirect
98+
golang.org/x/crypto v0.48.0 // indirect
99+
golang.org/x/net v0.50.0 // indirect
100100
golang.org/x/sync v0.19.0 // indirect
101-
golang.org/x/sys v0.39.0 // indirect
102-
golang.org/x/text v0.32.0 // indirect
101+
golang.org/x/sys v0.41.0 // indirect
102+
golang.org/x/text v0.34.0 // indirect
103103
golang.org/x/time v0.14.0 // indirect
104-
google.golang.org/genproto/googleapis/rpc v0.0.0-20251213004720-97cd9d5aeac2 // indirect
104+
google.golang.org/genproto/googleapis/rpc v0.0.0-20260217215200-42d3e9bedb6d // indirect
105105
gopkg.in/yaml.v3 v3.0.1 // indirect
106106
)

0 commit comments

Comments
 (0)