Skip to content

Commit

Permalink
deps: upgrade golang version
Browse files Browse the repository at this point in the history
  • Loading branch information
gotoeveryone committed Nov 23, 2024
1 parent 912002b commit 58d5853
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 16 deletions.
19 changes: 5 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,14 @@ jobs:
name: CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: 1.19

- name: Cache dependencies
uses: actions/cache@v3
id: cache
with:
path: ~/go/pkg/mod
key: ${{ runner.OS }}-1.19-${{ hashFiles('**/go.sum') }}

- name: Get dependencies
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
run: go mod download
go-version: "1.23"
cache-dependency-path: |
**/go.sum
- name: Run vet
run: go vet ./...
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Sentry のデータを Slack に連携するための関数群

## Requirements

- Go 1.19+
- Go 1.23+

## Environment Variables

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gotoeveryone/sentry_to_slack

go 1.19
go 1.23

require github.com/stretchr/testify v1.9.0

Expand Down

0 comments on commit 58d5853

Please sign in to comment.