Skip to content

Commit 89dd5ea

Browse files
authored
[deps] update to go 1.25 (#207)
<!-- If this is your first PR, welcome! Please make sure you read the [contributing guidelines](../CONTRIBUTING.md). --> <!-- Ensure your PR title complies with the following guidelines 1. All PRs titles should start with one of the following prefixes - `[fix]` for PRs related to bug fixes and patches - `[feat]` for PRs related to new features - `[improvement]` for PRs related to improvements of existing features - `[test]` for PRs related to tests - `[CI]` for PRs related to repo CI improvements - `[docs]` for PRs related to documentation updates - `[deps]` for PRs related to dependency updates 2. if a PR introduces a breaking change it should include `[breaking]` in the title 3. if a PR introduces a deprecation it should include `[deprecation]` in the title --> **What this PR does / why we need it**: **Which issue(s) this PR fixes** *(optional, in `fixes #<issue number>(, fixes #<issue_number>, ...)` format, will close the issue(s) when PR gets merged)*: Fixes # **Special notes for your reviewer**: **TODOs**: <!-- Put an "X" character inside the brackets of each completed task. Some may be optional depending on the PR. --> - [ ] squashed commits - [ ] includes documentation - [ ] adds unit tests - [ ] adds or updates e2e tests
1 parent 7917b14 commit 89dd5ea

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-push.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
build-push:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
fetch-depth: 0
1717
- name: Set up QEMU
@@ -26,8 +26,8 @@ jobs:
2626
- name: Login to Docker Hub
2727
uses: docker/login-action@v3
2828
with:
29-
username: ${{ secrets.DOCKER_USERNAME }}
30-
password: ${{ secrets.DOCKER_PASSWORD }}
29+
username: ${{ secrets.REGISTRY_USERNAME }}
30+
password: ${{ secrets.REGISTRY_TOKEN }}
3131
- name: Build and Push to Docker Hub
3232
uses: docker/build-push-action@v6
3333
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
#########################################################################################
1818

1919
# First stage: building the driver executable.
20-
FROM docker.io/library/golang:1.24 AS builder
20+
FROM docker.io/library/golang:1.25.0 AS builder
2121

2222
# Set the working directory.
2323
WORKDIR /work

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/linode/linode-cosi-driver
22

3-
go 1.24.0
3+
go 1.25.0
44

55
require (
66
github.com/go-resty/resty/v2 v2.16.5

0 commit comments

Comments
 (0)