Skip to content

Commit 5ee01a9

Browse files
chore(docker)(deps): bump golang from 1.21 to 1.24 (#10)
* chore(docker)(deps): bump golang from 1.21 to 1.24 Bumps golang from 1.21 to 1.24. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * Updated workflow --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Mitul Shah <[email protected]>
1 parent 007cb73 commit 5ee01a9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/go.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,18 @@ jobs:
1313

1414
build:
1515
runs-on: ubuntu-latest
16+
strategy:
17+
matrix:
18+
go-version:
19+
- 1.23.x
20+
- 1.24.x
1621
steps:
1722
- uses: actions/checkout@v4
1823

1924
- name: Set up Go
2025
uses: actions/setup-go@v5
2126
with:
22-
go-version: '1.21'
27+
go-version: '${{ matrix.go-version }}'
2328

2429
- name: Install dependencies
2530
run: go test -coverprofile=coverage.txt ./...

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# ───────────────────────────────────────────────────────────
22
# 🌟 STAGE 1: BUILD GO APPLICATION
33
# ───────────────────────────────────────────────────────────
4-
FROM golang:1.23 AS builder
4+
FROM golang:1.24 AS builder
55

66
# Accept build arguments
77
ARG SERVER_PORT

0 commit comments

Comments
 (0)