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
4 changes: 2 additions & 2 deletions .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.24.13'
GO_VERSION: '1.26.4'

jobs:
check-files:
Expand All @@ -22,7 +22,7 @@ jobs:
with:
go-version: ${{ env.GO_VERSION }}
- name: Check spelling with custom config file
uses: crate-ci/typos@v1.40.0
uses: crate-ci/typos@v1.44.0
with:
config: ./.github/typos.toml
- name: Verify Mod
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
fetch-depth: 0

- name: Initialize CodeQL
uses: github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/init@c793b717bc78562f491db7b0e93a3a178b099162
with:
languages: go

- name: Autobuild
uses: github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/autobuild@c793b717bc78562f491db7b0e93a3a178b099162

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7
uses: github/codeql-action/analyze@c793b717bc78562f491db7b0e93a3a178b099162

6 changes: 3 additions & 3 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@ permissions:
packages: write

env:
GO_VERSION: '1.24.13'
GO_VERSION: '1.26.4'

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
with:
egress-policy: audit

Expand All @@ -33,7 +33,7 @@ jobs:
ref: ${{ github.event.client_payload.tag }}

- name: Goreleaser
uses: goreleaser/goreleaser-action@v6
uses: goreleaser/goreleaser-action@v7
with:
version: latest
args: release --clean --timeout 60m --verbose
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
id-token: write # This is required for requesting the JWT
environment: e2e-test
env:
GO_VERSION: "1.24.13"
GO_VERSION: "1.26.4"

steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
with:
egress-policy: audit

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.24.13"
GO_VERSION: "1.26.4"

permissions:
id-token: write # This is required for requesting the JWT
Expand Down
4 changes: 2 additions & 2 deletions .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.24.13'
GO_VERSION: '1.26.4'

jobs:
build:
Expand All @@ -22,7 +22,7 @@ jobs:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
with:
egress-policy: audit

Expand Down
4 changes: 2 additions & 2 deletions .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.24.13'
GO_VERSION: '1.26.4'
IMAGE_NAME: 'gpu-provisioner'
REGISTRY: ghcr.io

Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
ref: ${{ needs.check-tag.outputs.tag }}

- name: Login to ${{ steps.get-registry.outputs.registry_repository }}
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
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.24.13'
GO_VERSION: '1.26.4'
IMAGE_NAME: 'gpu-provisioner'

jobs:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ permissions:
packages: write

env:
GO_VERSION: '1.24.13'
GO_VERSION: '1.26.4'

jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
uses: step-security/harden-runner@a90bcbc6539c36a85cdfeb73f7e2f433735f215b # v2.15.0
with:
egress-policy: audit

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.24 as builder
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/oss/go/microsoft/golang:1.26.4 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.24.13
go 1.26.4

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