Skip to content

Commit e80b40a

Browse files
bump go version to 1.25.1 (#181)
1 parent 065b334 commit e80b40a

File tree

4 files changed

+17
-22
lines changed

4 files changed

+17
-22
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -17,26 +17,9 @@ jobs:
1717
echo "Building with Go $(cat .go-version)"
1818
echo "::set-output name=go-version::$(cat .go-version)"
1919
20-
golangci:
21-
name: lint
22-
needs:
23-
- get-go-version
24-
runs-on: ubuntu-latest
25-
steps:
26-
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
27-
with:
28-
go-version: ${{ needs.get-go-version.outputs.go-version }}
29-
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
30-
- name: golangci-lint
31-
uses: golangci/golangci-lint-action@aaa42aa0628b4ae2578232a66b541047968fac86 # v6.1.0
32-
with:
33-
args: |
34-
-v --concurrency 2 \
35-
--disable-all \
36-
--timeout 10m \
37-
--enable gofmt \
38-
--enable gosimple \
39-
--enable govet
20+
run-go-checks:
21+
# using `main` as the ref will keep your workflow up-to-date
22+
uses: hashicorp/vault-workflows-common/.github/workflows/go-checks.yaml@main
4023

4124
run-tests:
4225
# using `main` as the ref will keep your workflow up-to-date

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.24.4
1+
1.25.1

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
## Unreleased
22

3+
## 0.13.2 (Oct 2, 2025)
4+
5+
LAYERS:
6+
```
7+
arn:aws:lambda:<AWS_REGION>:634166935893:layer:vault-lambda-extension:24
8+
arn:aws:lambda:<AWS_REGION>:634166935893:layer:vault-lambda-extension-arm64:12
9+
```
10+
11+
IMPROVEMENTS:
12+
13+
* Building with Go 1.25.1
14+
315
## 0.13.1 (Jun 23, 2025)
416

517
LAYERS:

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/hashicorp/vault-lambda-extension
22

3-
go 1.24.3
3+
go 1.25.1
44

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

0 commit comments

Comments
 (0)