Skip to content

Commit cfb8e00

Browse files
committed
chore(deps): Upgrade to go1.24
1 parent 0a06139 commit cfb8e00

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Setup Go
1919
uses: actions/setup-go@v5
2020
with:
21-
go-version: '^1.21.5'
21+
go-version: '^1.24.1'
2222

2323
- name: Install dependencies
2424
run: make deps

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# $ docker build -t jira-cli:latest .
33
# $ docker run --rm -it -v ~/.netrc:/root/.netrc -v ~/.config/.jira:/root/.config/.jira jira-cli
44

5-
FROM golang:1.21-alpine3.19 as builder
5+
FROM golang:1.24-alpine3.21 AS builder
66

77
ENV CGO_ENABLED=0
88
ENV GOOS=linux

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ install:
4444
lint:
4545
@if ! command -v golangci-lint > /dev/null 2>&1; then \
4646
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | \
47-
sh -s -- -b "$$(go env GOPATH)/bin" v1.62.2 ; \
47+
sh -s -- -b "$$(go env GOPATH)/bin" v1.64.7 ; \
4848
fi
4949
golangci-lint run ./...
5050

go.mod

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
module github.com/ankitpokhrel/jira-cli
22

3-
go 1.21
3+
go 1.24.0
4+
45
toolchain go1.24.1
56

67
require (

0 commit comments

Comments
 (0)