Skip to content

Commit f53c234

Browse files
committed
Using go version 1.18
1 parent d98cf53 commit f53c234

5 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/mergify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pull_request_rules:
88
conditions:
99
- -draft
1010
- author~=^dependabot(|-preview)\[bot\]$
11-
- check-success='test (1.17.x, ubuntu-latest)'
11+
- check-success='test (1.18.x, ubuntu-latest)'
1212
- check-success='Analyze (go)'
1313
- title~=^Bump [^\s]+ from ([\d]+)\..+ to \1\.
1414
actions:
@@ -20,7 +20,7 @@ pull_request_rules:
2020
- name: Alert on major version detection
2121
conditions:
2222
- author~=^dependabot(|-preview)\[bot\]$
23-
- check-success='test (1.17.x, ubuntu-latest)'
23+
- check-success='test (1.18.x, ubuntu-latest)'
2424
- check-success='Analyze (go)'
2525
- -title~=^Bump [^\s]+ from ([\d]+)\..+ to \1\.
2626
actions:
@@ -36,7 +36,7 @@ pull_request_rules:
3636
- "#approved-reviews-by>=1"
3737
- "#review-requested=0"
3838
- "#changes-requested-reviews-by=0"
39-
- check-success='test (1.17.x, ubuntu-latest)'
39+
- check-success='test (1.18.x, ubuntu-latest)'
4040
- check-success='Analyze (go)'
4141
- -title~=(?i)wip
4242
- label!=work-in-progress

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Set up Go
2424
uses: actions/setup-go@v3
2525
with:
26-
go-version: 1.17
26+
go-version: 1.18
2727
- name: Run GoReleaser
2828
uses: goreleaser/goreleaser-action@v3.0.0
2929
with:

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
needs: [yamllint, asknancy]
3939
strategy:
4040
matrix:
41-
go-version: [1.17.x]
41+
go-version: [1.18.x]
4242
os: [ubuntu-latest]
4343
runs-on: ${{ matrix.os }}
4444
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ vet Run the Go vet application
224224
## Examples & Tests
225225

226226
All unit tests and [examples](examples) run via [Github Actions](https://github.com/BuxOrg/bux-server/actions) and
227-
uses [Go version 1.17.x](https://golang.org/doc/go1.17). View the [configuration file](.github/workflows/run-tests.yml).
227+
uses [Go version 1.18.x](https://golang.org/doc/go1.18). View the [configuration file](.github/workflows/run-tests.yml).
228228

229229
<br/>
230230

config/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const (
2727
EnvironmentStaging = "staging"
2828
EnvironmentTest = "test"
2929
HealthRequestPath = "health"
30-
Version = "v0.1.12"
30+
Version = "v0.2.0"
3131
)
3232

3333
// Local variables for configuration

0 commit comments

Comments
 (0)