Skip to content

Commit

Permalink
chore(go): update go to 1.22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kilianpaquier committed Apr 8, 2024
1 parent fe9d114 commit c6b85e0
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ coverage:
ignore:
- "cmd"
- "examples"
- "**/cobra"
- "**/mocks"
- "**/tests"
- "**/testutils"
- "**/cobra/**"
- "**/mocks/**"
- "**/tests/**"
- "**/testutils/**"
3 changes: 3 additions & 0 deletions .craft
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Craft configuration file (https://github.com/kilianpaquier/craft)
---
ci:
name: github
options:
Expand All @@ -9,3 +11,4 @@ maintainers:
- url: kilianpaquier.com
name: kilianpaquier
no_chart: true
platform: github
5 changes: 4 additions & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ on:
- ready_for_review
push:
branches:
- alpha
- beta
- develop
- main
- next
- staging
- develop
- v[0-9]+
workflow_dispatch:

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- uses: actions/checkout@v4
- id: sha
run: echo "sha=$(echo "$GITHUB_REF_NAME" | sha256sum | cut -c -8)" >> $GITHUB_OUTPUT
# https://github.com/marketplace/actions/action-for-semantic-release
- id: semantic_release
uses: cycjimmy/semantic-release-action@v4
with:
Expand Down Expand Up @@ -78,6 +79,7 @@ jobs:
- uses: actions/checkout@v4
with:
persist-credentials: false
# https://github.com/marketplace/actions/action-for-semantic-release
- id: semantic-release
uses: cycjimmy/semantic-release-action@v4
with:
Expand Down
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# If you prefer the allow list template instead of the deny list, see community template:
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore
#
# Binaries for programs and plugins
# Binaries for programs
*.exe
*.exe~
*.dll
Expand All @@ -28,6 +28,5 @@ reports/

# configs
.env
*.toml

# binaries
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/kilianpaquier/pooling

go 1.22.0

toolchain go1.22.1
toolchain go1.22.2

require (
github.com/panjf2000/ants/v2 v2.9.1
Expand Down

0 comments on commit c6b85e0

Please sign in to comment.