Skip to content

Commit fc9542f

Browse files
authoredOct 14, 2024··
Merge pull request #47 from JayGaba/jayesh/go-version-update
Updated Go to the latest version(1.23)
2 parents 287e6e9 + 2f44b6c commit fc9542f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎.github/actions/check/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
- uses: actions/checkout@v3
77
- uses: actions/setup-go@v3
88
with:
9-
go-version: 1.18
9+
go-version: 1.23
1010
- shell: bash
1111
run: make build
1212
- shell: bash

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18 as builder
1+
FROM golang:1.23 as builder
22
RUN mkdir /app
33
WORKDIR /app
44
COPY . .

‎Dockerfile.dev

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.18 as build
1+
FROM golang:1.23 as build
22
RUN go install github.com/cortesi/modd/cmd/modd@latest
33
WORKDIR /app
44
COPY go.mod .

‎go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/devict/job-board
22

3-
go 1.18
3+
go 1.23
44

55
require (
66
github.com/DATA-DOG/go-sqlmock v1.5.0

0 commit comments

Comments
 (0)
Please sign in to comment.