Skip to content
Merged
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 .github/workflows/check-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:


env:
GO_VERSION: '1.26.5'
GO_VERSION: '1.26.6'

jobs:
check-files:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions:
packages: write

env:
GO_VERSION: '1.26.5'
GO_VERSION: '1.26.6'

jobs:
create-release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
id-token: write # This is required for requesting the JWT
environment: e2e-test
env:
GO_VERSION: "1.26.5"
GO_VERSION: "1.26.6"

steps:
- name: Harden Runner
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
paths-ignore: ["docs/**", "**.md", "**.mdx", "**.png", "**.jpg"]

env:
GO_VERSION: "1.26.5"
GO_VERSION: "1.26.6"

permissions:
id-token: write # This is required for requesting the JWT
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- main

env:
GO_VERSION: '1.26.5'
GO_VERSION: '1.26.6'

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-gh-image-and-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
packages: write

env:
GO_VERSION: '1.26.5'
GO_VERSION: '1.26.6'
IMAGE_NAME: 'gpu-provisioner'
REGISTRY: ghcr.io

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-mcr-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:
packages: write

env:
GO_VERSION: '1.26.5'
GO_VERSION: '1.26.6'
IMAGE_NAME: 'gpu-provisioner'

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ permissions:
packages: write

env:
GO_VERSION: '1.26.5'
GO_VERSION: '1.26.6'

jobs:
unit-tests:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Set up Go 1.x
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6
with:
go-version: 1.26.5
go-version: 1.26.6
id: go

- name: Checkout code
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/oss/go/microsoft/golang:1.26.5 AS builder
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/oss/go/microsoft/golang:1.26.6 AS builder
ARG TARGETOS
ARG TARGETARCH
ARG KARPENTERVER
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/azure/gpu-provisioner

go 1.26.5
go 1.26.6

require (
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible
Expand Down
Loading