Skip to content

Commit 48756ce

Browse files
committed
feat: updated version of Go
1 parent 333512f commit 48756ce

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/mergify.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ pull_request_rules:
88
conditions:
99
- -draft
1010
- author~=^dependabot(|-preview)\[bot\]$
11-
- check-success='test (1.17.x, ubuntu-latest)'
1211
- check-success='test (1.18.x, ubuntu-latest)'
12+
- check-success='test (1.19.x, ubuntu-latest)'
1313
- check-success='Analyze (go)'
1414
- title~=^Bump [^\s]+ from ([\d]+)\..+ to \1\.
1515
actions:
@@ -21,8 +21,8 @@ pull_request_rules:
2121
- name: Alert on major version detection
2222
conditions:
2323
- author~=^dependabot(|-preview)\[bot\]$
24-
- check-success='test (1.17.x, ubuntu-latest)'
2524
- check-success='test (1.18.x, ubuntu-latest)'
25+
- check-success='test (1.19.x, ubuntu-latest)'
2626
- check-success='Analyze (go)'
2727
- -title~=^Bump [^\s]+ from ([\d]+)\..+ to \1\.
2828
actions:
@@ -38,8 +38,8 @@ pull_request_rules:
3838
- "#approved-reviews-by>=1"
3939
- "#review-requested=0"
4040
- "#changes-requested-reviews-by=0"
41-
- check-success='test (1.17.x, ubuntu-latest)'
4241
- check-success='test (1.18.x, ubuntu-latest)'
42+
- check-success='test (1.19.x, ubuntu-latest)'
4343
- check-success='Analyze (go)'
4444
- -title~=(?i)wip
4545
- label!=work-in-progress

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@v4
2525
with:
26-
go-version: 1.17
26+
go-version: 1.19
2727
- name: Run GoReleaser
2828
uses: goreleaser/[email protected]
2929
with:

.github/workflows/run-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
test:
1616
strategy:
1717
matrix:
18-
go-version: [ 1.17.x, 1.18.x ]
18+
go-version: [ 1.18.x, 1.19.x ]
1919
os: [ ubuntu-latest ]
2020
runs-on: ${{ matrix.os }}
2121
steps:

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ vet Run the Go vet application
130130

131131
## Examples & Tests
132132
All unit tests and [examples](examples) run via [GitHub Actions](https://github.com/mrz1836/go-mail/actions) and
133-
uses [Go version 1.17.x](https://golang.org/doc/go1.17). View the [configuration file](.github/workflows/run-tests.yml).
133+
uses [Go version 1.18.x](https://golang.org/doc/go1.18). View the [configuration file](.github/workflows/run-tests.yml).
134134

135135
Run all tests (including integration tests)
136136
```shell script

0 commit comments

Comments
 (0)