Skip to content

Commit de7104a

Browse files
fix(deps): update module golang.org/x/oauth2 to v0.27.0 [security] (#447)
* fix(deps): update module golang.org/x/oauth2 to v0.27.0 [security] * Skip toolchain and run mod tidy * Update min Go version * Unlink tests to doc examples --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: beppe <[email protected]>
1 parent 13002bc commit de7104a

File tree

6 files changed

+71
-1569
lines changed

6 files changed

+71
-1569
lines changed

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
1717
with:
1818
token: ${{ secrets.ADYEN_AUTOMATION_BOT_ACCESS_TOKEN }}
19-
19+
2020
- name: Log Commit Details
2121
run: |
2222
echo "github.event.size: ${{ github.event.size }}"
@@ -25,7 +25,7 @@ jobs:
2525
- name: Setup Go
2626
uses: actions/setup-go@v5
2727
with:
28-
go-version: 1.18
28+
go-version: 1.23
2929

3030
- name: Format Code
3131
run: make fmt

.github/workflows/go.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
strategy:
2020
matrix:
21-
go-version: ['1.13', '1.17', '1.21']
21+
go-version: ['1.23', '1.24']
2222

2323
steps:
2424
- name: Checkout code
@@ -67,7 +67,7 @@ jobs:
6767
- name: Set up Go
6868
uses: actions/setup-go@v5
6969
with:
70-
go-version: '1.21'
70+
go-version: '1.23'
7171

7272
- name: Clean module cache directory
7373
run: sudo rm -rf ~/go/pkg/mod

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ The library supports all webhooks under the following model directories:
4848

4949
## Prerequisites
5050

51-
- Go 1.13 or higher
51+
- Go 1.23 or higher
5252
- [Adyen test account](https://docs.adyen.com/get-started-with-adyen)
5353
- [API key](https://docs.adyen.com/development-resources/api-credentials#generate-api-key). For testing, your API credential needs to have the [API PCI Payments role](https://docs.adyen.com/development-resources/api-credentials#roles).
5454
- [Basic Authentication](https://docs.adyen.com/development-resources/api-credentials#basic-authentication) (for Legal Entity Management API only).

go.mod

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,30 @@
11
module github.com/adyen/adyen-go-api-library/v21
22

3-
go 1.13
3+
go 1.23.0
44

55
require (
66
github.com/google/uuid v1.6.0
77
github.com/joho/godotenv v1.5.1
88
github.com/stretchr/testify v1.8.2
9-
golang.org/x/oauth2 v0.11.0
9+
golang.org/x/oauth2 v0.27.0
10+
gotest.tools/gotestsum v1.12.3
11+
)
12+
13+
require (
14+
github.com/bitfield/gotestdox v0.2.2 // indirect
15+
github.com/davecgh/go-spew v1.1.1 // indirect
16+
github.com/dnephin/pflag v1.0.7 // indirect
17+
github.com/fatih/color v1.18.0 // indirect
18+
github.com/fsnotify/fsnotify v1.8.0 // indirect
19+
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
20+
github.com/mattn/go-colorable v0.1.13 // indirect
21+
github.com/mattn/go-isatty v0.0.20 // indirect
22+
github.com/pmezard/go-difflib v1.0.0 // indirect
23+
golang.org/x/mod v0.25.0 // indirect
24+
golang.org/x/sync v0.15.0 // indirect
25+
golang.org/x/sys v0.33.0 // indirect
26+
golang.org/x/term v0.32.0 // indirect
27+
golang.org/x/text v0.17.0 // indirect
28+
golang.org/x/tools v0.34.0 // indirect
29+
gopkg.in/yaml.v3 v3.0.1 // indirect
1030
)

0 commit comments

Comments
 (0)