Skip to content

Commit c56099b

Browse files
authored
upgrayyydes (#79)
1 parent 8d4708b commit c56099b

File tree

5 files changed

+21
-9
lines changed

5 files changed

+21
-9
lines changed

.buildkite/pipeline.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ steps:
2121
cancel_on_build_failing: true
2222
plugins:
2323
- docker#v5.12.0:
24-
image: golang:1.23.3
24+
image: golang:1.24.1
2525
always-pull: true
2626
command: ["go", "test", "-coverprofile=coverage.out", "./..."]
2727
environment:
@@ -39,7 +39,7 @@ steps:
3939
download: "coverage.out"
4040
step: "go_test"
4141
- docker#v5.12.0:
42-
image: "sonarsource/sonar-scanner-cli:11.0"
42+
image: "sonarsource/sonar-scanner-cli:11.2"
4343
environment:
4444
- "SONAR_TOKEN"
4545
- "SONAR_HOST_URL=$SONAR_HOST"
@@ -56,7 +56,7 @@ steps:
5656
download: coverage.out
5757
step: "go_test"
5858
- docker#v5.12.0:
59-
image: "sonarsource/sonar-scanner-cli:11.0"
59+
image: "sonarsource/sonar-scanner-cli:11.2"
6060
environment:
6161
- "SONAR_TOKEN"
6262
- "SONAR_HOST_URL=$SONAR_HOST"

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ repos:
1111
- id: detect-private-key
1212
exclude: providers/gmail/gmail_test.go
1313
- repo: https://github.com/google/yamlfmt
14-
rev: v0.15.0
14+
rev: v0.16.0
1515
hooks:
1616
- id: yamlfmt
1717
- repo: https://github.com/crate-ci/typos
18-
rev: v1.29.4
18+
rev: v1.30.2
1919
hooks:
2020
- id: typos

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This project is organized into several sub-packages:
2727

2828
Prereqs:
2929

30-
- Go 1.22+
30+
- Go 1.24+
3131
- Access to the relevant email service provider (Resend is our choice!) to get credentials and such
3232

3333
### Adding to your project
@@ -84,7 +84,7 @@ This will put the emails that would be send in the `emails/` directory instead
8484
## Implemented Providers
8585

8686
This package supports various email providers and can be extended to include more. NOTE: we use [Resend](https://resend.com/) for our production service and will invest in that provider more than others.
87-
87+
8888
- Resend
8989
- Gmail
9090
- SendGrid

go.mod

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

3-
go 1.23.3
3+
go 1.24.1
44

55
require (
66
github.com/mailgun/mailgun-go/v4 v4.23.0

renovate.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,17 @@
77
],
88
"labels": [
99
"dependencies"
10-
]
10+
],
11+
"packageRules": [
12+
{
13+
"groupName": "all patch dependencies",
14+
"groupSlug": "all-patch",
15+
"matchPackageNames": [
16+
"*"
17+
],
18+
"matchUpdateTypes": [
19+
"patch"
20+
]
21+
}
22+
]
1123
}

0 commit comments

Comments
 (0)