Skip to content

Commit 8e18966

Browse files
committed
Add 1.25 support to CI actions
1 parent a06f01d commit 8e18966

File tree

6 files changed

+14
-15
lines changed

6 files changed

+14
-15
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,20 @@ on:
99
- cron: 38 22 * * 1
1010
jobs:
1111
analyze:
12-
name: Analyze
12+
name: Analyze (${{ matrix.version }})
1313
runs-on: ubuntu-latest
14+
strategy:
15+
matrix:
16+
version: [1.23, 1.24, 1.25]
1417
permissions:
1518
actions: read
1619
contents: read
1720
security-events: write
1821
steps:
19-
- name: Set up Go
20-
uses: actions/setup-go@v5
22+
- uses: actions/checkout@v5
23+
- uses: actions/setup-go@v5
2124
with:
22-
go-version: 1.22.x
23-
- name: Checkout repository
24-
uses: actions/checkout@v4
25+
go-version: ${{ matrix.version }}
2526
- name: Initialize CodeQL
2627
uses: github/codeql-action/init@v3
2728
with:

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
dir: [., ./store/awsrds, ./store/vault]
15-
version: [1.23, 1.24]
15+
version: [1.23, 1.24, 1.25]
1616
include:
1717
- dir: .
1818
name: go-db-credential-refresh
@@ -21,7 +21,7 @@ jobs:
2121
- dir: ./store/vault
2222
name: store/vault
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: actions/setup-go@v5
2626
with:
2727
go-version: ${{ matrix.version }}

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
dir: [., ./store/awsrds, ./store/vault]
15-
version: [1.23, 1.24]
15+
version: [1.23, 1.24, 1.25]
1616
include:
1717
- dir: .
1818
name: go-db-credential-refresh
@@ -21,7 +21,7 @@ jobs:
2121
- dir: ./store/vault
2222
name: store/vault
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: actions/setup-go@v5
2626
with:
2727
go-version: ${{ matrix.version }}

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
dir: [., ./store/awsrds, ./store/vault]
15-
version: [1.23, 1.24]
15+
version: [1.23, 1.24, 1.25]
1616
include:
1717
- dir: .
1818
name: go-db-credential-refresh
@@ -21,7 +21,7 @@ jobs:
2121
- dir: ./store/vault
2222
name: store/vault
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- uses: actions/setup-go@v5
2626
with:
2727
go-version: ${{ matrix.version }}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/davepgreene/go-db-credential-refresh
22

33
go 1.23.0
44

5-
toolchain go1.24.0
5+
toolchain go1.25.0
66

77
require (
88
github.com/go-sql-driver/mysql v1.9.3

store/vault/go.mod

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@ module github.com/davepgreene/go-db-credential-refresh/store/vault
22

33
go 1.24.0
44

5-
toolchain go1.25.0
6-
75
replace github.com/davepgreene/go-db-credential-refresh => ../../
86

97
require (

0 commit comments

Comments
 (0)