Skip to content

Commit

Permalink
Version updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
paddycarver committed May 11, 2024
1 parent 443d019 commit 37d694c
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 11 deletions.
11 changes: 11 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,18 @@ updates:
directory: "/"
schedule:
interval: "daily"
groups:
all:
update-types:
- "major"
- "minor"
- "patch"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "daily"
groups:
not-major:
update-types:
- "minor"
- "patch"
12 changes: 7 additions & 5 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,16 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['stable', 'oldstable']
go:
- 'stable'
- 'oldstable'

steps:
- uses: actions/setup-go@v4
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v6
with:
version: v1.52.2
version: v1.55.2
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,14 @@ jobs:
strategy:
fail-fast: false
matrix:
go: ['stable', 'oldstable']
go:
- 'stable'
- 'oldstable'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}

Expand All @@ -33,13 +35,13 @@ jobs:
echo "::set-output name=go-mod::$(go env GOMODCACHE)"
- name: Go Build Cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: ${{ steps.go-cache-paths.outputs.go-build }}
key: ${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}

- name: Go Mod Cache
uses: actions/cache@v3.3.1
uses: actions/cache@v4.0.2
with:
path: ${{ steps.go-cache-paths.outputs.go-mod }}
key: ${{ runner.os }}-go-mod-${{ hashFiles('**/go.sum') }}
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module impractical.co/temple

go 1.20
go 1.21

0 comments on commit 37d694c

Please sign in to comment.