Skip to content

Commit 11c2c19

Browse files
committed
chore: Bumps go version to 1.25.6
1 parent f105365 commit 11c2c19

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
go: ['1.25.5']
19+
go: ['1.25.6']
2020

2121
steps:
2222
- name: Check out code

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ ENV PLAYWRIGHT_BROWSERS_PATH=/opt/browsers
55
RUN export PATH=$PATH:/usr/local/go/bin:/root/go/bin \
66
&& apt-get update \
77
&& apt-get install -y --no-install-recommends ca-certificates curl wget \
8-
&& wget -q https://go.dev/dl/go1.25.5.linux-amd64.tar.gz \
9-
&& tar -C /usr/local -xzf go1.25.5.linux-amd64.tar.gz \
10-
&& rm go1.25.5.linux-amd64.tar.gz \
8+
&& wget -q https://go.dev/dl/go1.25.6.linux-amd64.tar.gz \
9+
&& tar -C /usr/local -xzf go1.25.6.linux-amd64.tar.gz \
10+
&& rm go1.25.6.linux-amd64.tar.gz \
1111
&& curl -fsSL https://deb.nodesource.com/setup_20.x | bash - \
1212
&& apt-get install -y --no-install-recommends nodejs \
1313
&& apt-get clean \
@@ -17,7 +17,7 @@ RUN export PATH=$PATH:/usr/local/go/bin:/root/go/bin \
1717
&& playwright install chromium --with-deps
1818

1919
# Build stage
20-
FROM golang:1.25.5-trixie AS builder
20+
FROM golang:1.25.6-trixie AS builder
2121
WORKDIR /app
2222
COPY go.mod go.sum ./
2323
RUN go mod download

Dockerfile.rod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Build stage
2-
FROM golang:1.25.5-trixie AS builder
2+
FROM golang:1.25.6-trixie AS builder
33
WORKDIR /app
44
COPY go.mod go.sum ./
55
RUN go mod download

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ docker pull gosom/google-maps-scraper:latest-rod
193193

194194
### Build from Source
195195

196-
Requirements: Go 1.25.5+
196+
Requirements: Go 1.25.6+
197197

198198
```bash
199199
git clone https://github.com/gosom/google-maps-scraper.git

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/gosom/google-maps-scraper
22

3-
go 1.25.5
3+
go 1.25.6
44

55
require (
66
github.com/PuerkitoBio/goquery v1.10.3

go.work

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
go 1.25.5
1+
go 1.25.6
22

33
use .

0 commit comments

Comments
 (0)