Skip to content

Commit 39150e7

Browse files
committed
update to Go 1.25
1 parent e4dafbc commit 39150e7

File tree

5 files changed

+6
-8
lines changed

5 files changed

+6
-8
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ jobs:
1111
- uses: actions/checkout@v4
1212

1313
- name: Run tests
14-
run: docker compose run test bash -c "make test"
14+
run: docker compose run test

Dockerfile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
FROM golang:1.23
2-
3-
RUN apt-get update -y
1+
FROM golang:1.25
42

53
COPY . /certmagic-storage-dynamodb
64

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
test: deps
2-
go test -v -coverprofile=cover.out .
2+
docker compose run test
33

44
deps:
5-
go get ./...
5+
go get ./...

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ services:
1515
AWS_SECRET_ACCESS_KEY: abc123
1616
depends_on:
1717
- dynamo
18-
command: make
18+
command: go test -v -coverprofile=cover.out .

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/sil-org/certmagic-storage-dynamodb/v3
22

3-
go 1.23.0
3+
go 1.25
44

55
require (
66
github.com/aws/aws-sdk-go-v2 v1.34.0

0 commit comments

Comments
 (0)