Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.26.4
FROM golang:1.26.5

# Install git and other basics
RUN apt-get update && apt-get install -y git curl
Expand Down
8 changes: 4 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"

- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"

- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"

- package-ecosystem: "docker"
directory: "/tests/toolbox"
schedule:
interval: "weekly"
interval: "daily"
2 changes: 2 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ module github.com/gke-labs/gateway-api-reference-implementation

go 1.26.4

toolchain go1.26.5

require (
github.com/google/go-cmp v0.7.0
golang.org/x/net v0.56.0
Expand Down
2 changes: 1 addition & 1 deletion images/gari-controller/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.26.4 AS builder
FROM golang:1.26.5 AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
Expand Down
2 changes: 1 addition & 1 deletion tests/toolbox/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.26.4 AS builder
FROM golang:1.26.5 AS builder
WORKDIR /app
COPY main.go .
RUN CGO_ENABLED=0 go build -o toolbox main.go
Expand Down
Loading