Skip to content

Commit

Permalink
golang.org/x/text v0.10.0 => v0.11.0, go version up to 1.20 (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
s0rg committed Jul 19, 2023
1 parent 84f2e4c commit e61d86c
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 17 deletions.
22 changes: 13 additions & 9 deletions .github/dependabot.yml
@@ -1,15 +1,19 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

# dependabot settings
version: 2
updates:
- package-ecosystem: gomod
directory: /
- package-ecosystem: "gomod"
directory: "/"
target-branch: "develop"
labels:
- "gomod dependencies"
schedule:
interval: weekly
interval: "weekly"
day: "friday"
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "develop"
labels:
- "github-actions dependencies"
schedule:
interval: weekly
interval: "weekly"
day: "friday"
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: setup golang
uses: actions/setup-go@v4
with:
go-version: ^1.19
go-version: ^1.20
check-latest: true
cache: true
- name: golangci-lint
Expand All @@ -35,11 +35,11 @@ jobs:
- name: setup golang
uses: actions/setup-go@v4
with:
go-version: ^1.19
go-version: ^1.20
check-latest: true
cache: true
- name: test-coverage
uses: paambaati/codeclimate-action@v4.0.0
uses: paambaati/codeclimate-action@v5.0.0
env:
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
with:
Expand All @@ -57,7 +57,7 @@ jobs:
- name: setup golang
uses: actions/setup-go@v4
with:
go-version: ^1.19
go-version: ^1.20
check-latest: true
cache: true
- name: init codeql
Expand Down
4 changes: 2 additions & 2 deletions go.mod
@@ -1,5 +1,5 @@
module github.com/s0rg/fantasyname

go 1.19
go 1.20

require golang.org/x/text v0.10.0
require golang.org/x/text v0.11.0
4 changes: 2 additions & 2 deletions go.sum
@@ -1,2 +1,2 @@
golang.org/x/text v0.10.0 h1:UpjohKhiEgNc0CSauXmwYftY1+LlaC75SJwh0SgCX58=
golang.org/x/text v0.10.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=
golang.org/x/text v0.11.0 h1:LAntKIrcmeSKERyiOh0XMV39LXS8IE9UL2yP7+f5ij4=
golang.org/x/text v0.11.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE=

0 comments on commit e61d86c

Please sign in to comment.