Skip to content

Commit

Permalink
ci: use go 1.23 for building/testing
Browse files Browse the repository at this point in the history
  • Loading branch information
hekmekk committed Sep 13, 2024
1 parent bbf16bf commit e11dcf3
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.23'
- run: |
GOPATH=$(go env GOPATH) make
- uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20'
go-version: '1.23'
- run: make verify
4 changes: 2 additions & 2 deletions acceptance-tests.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN git clone https://github.com/ztombol/bats-assert /bats-libs/bats-assert

# ----------------------------------------------------------------- #

FROM golang:1.20-alpine as git-team
FROM golang:1.23-alpine as git-team

RUN mkdir /git-team-source
WORKDIR /git-team-source
Expand All @@ -33,7 +33,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go install ./...

# ----------------------------------------------------------------- #

FROM golang:1.20-alpine
FROM golang:1.23-alpine

RUN apk add --no-cache bash git ncurses

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/hekmekk/git-team

go 1.20
go 1.23

require (
github.com/fatih/color v1.14.1
Expand Down
4 changes: 2 additions & 2 deletions hookscript-tests.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN git clone https://github.com/ztombol/bats-assert /bats-libs/bats-assert

# ----------------------------------------------------------------- #

FROM golang:1.20-alpine as git-team
FROM golang:1.23-alpine as git-team

RUN mkdir /git-team-source
WORKDIR /git-team-source
Expand All @@ -33,7 +33,7 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go install ./...

# ----------------------------------------------------------------- #

FROM golang:1.20-alpine
FROM golang:1.23-alpine

RUN apk add --no-cache bash git ncurses

Expand Down

0 comments on commit e11dcf3

Please sign in to comment.