Skip to content

Commit

Permalink
versions up (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
s0rg authored Oct 6, 2023
1 parent 4aa81ca commit 3a154cd
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
24 changes: 12 additions & 12 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
# dependabot settings
version: 2
updates:
- package-ecosystem: "gomod"
directory: "/"
target-branch: "develop"
- package-ecosystem: gomod
directory: /
target-branch: develop
labels:
- "gomod dependencies"
- gomod
schedule:
interval: "weekly"
day: "friday"
- package-ecosystem: "github-actions"
directory: "/"
target-branch: "develop"
interval: weekly
day: friday
- package-ecosystem: github-actions
directory: /
target-branch: develop
labels:
- "github-actions dependencies"
- github
schedule:
interval: "weekly"
day: "friday"
interval: weekly
day: friday
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ jobs:
name: ci
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup golang
uses: actions/setup-go@v4
with:
go-version: ^1.21
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
- name: goreleaser-check
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: check -f .goreleaser.yml
Expand All @@ -34,7 +34,7 @@ jobs:
name: ci
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup golang
uses: actions/setup-go@v4
with:
Expand All @@ -55,7 +55,7 @@ jobs:
name: ci
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: setup golang
uses: actions/setup-go@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: set up golang
uses: actions/setup-go@v4
with:
go-version: ^1.21
- name: build
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v5
with:
version: latest
args: release -f .goreleaser.yml --clean
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/s0rg/crawley

go 1.21.0
go 1.21.1

require (
github.com/s0rg/compflag v1.1.0
github.com/s0rg/set v1.2.0
golang.org/x/net v0.15.0
golang.org/x/net v0.16.0
)
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ github.com/s0rg/compflag v1.1.0 h1:xhCUPLy+5Ue/Q9I/nIcLti2Ul6P42JYx4UvtYoDXmlQ=
github.com/s0rg/compflag v1.1.0/go.mod h1:XMntVpc3+jpmBe0s8xo4w9swH8T9ARGkMC9HFiDRoUw=
github.com/s0rg/set v1.2.0 h1:53b207YMktNQJXYei/oHuTR5oOO2e9+eieZOncYsh9g=
github.com/s0rg/set v1.2.0/go.mod h1:xz3nDbjF4nyMLvAHvmE7rigXpNrKKTsi6iANznIB1/4=
golang.org/x/net v0.15.0 h1:ugBLEUaxABaB5AJqW9enI0ACdci2RUd4eP51NTBvuJ8=
golang.org/x/net v0.15.0/go.mod h1:idbUs1IY1+zTqbi8yxTbhexhEEk5ur9LInksu6HrEpk=
golang.org/x/net v0.16.0 h1:7eBu7KsSvFDtSXUIDbh3aqlK4DPsZ1rByC8PFfBThos=
golang.org/x/net v0.16.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE=

0 comments on commit 3a154cd

Please sign in to comment.