diff --git a/.github/dependabot.yml b/.github/dependabot.yml index fb97e6e..89e8cda 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -7,7 +7,7 @@ updates: commit-message: prefix: "fix" include: "scope" - open-pull-requests-limit: 10 + open-pull-requests-limit: 20 - package-ecosystem: "docker" directory: "/" @@ -16,7 +16,7 @@ updates: commit-message: prefix: "fix" include: "scope" - open-pull-requests-limit: 10 + open-pull-requests-limit: 20 - package-ecosystem: "github-actions" directory: "/" @@ -25,4 +25,4 @@ updates: commit-message: prefix: "fix" include: "scope" - open-pull-requests-limit: 10 + open-pull-requests-limit: 20 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1db7cb5..f6bd11b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.2.1 with: token: ${{ secrets.API_GITHUB_TOKEN }} @@ -22,12 +22,12 @@ jobs: echo "go_version=$GO_VERSION" >> $GITHUB_ENV - name: Setup Go environment - uses: actions/setup-go@v5.0.0 + uses: actions/setup-go@v5.0.2 with: go-version: "${{ env.go_version }}" - name: Binaries Release - uses: goreleaser/goreleaser-action@v5.0.0 + uses: goreleaser/goreleaser-action@v6.0.0 with: version: ~> 1.16.2 args: release --rm-dist diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8726ad1..8d18dc1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,13 +13,13 @@ jobs: steps: - name: Checkout with token if: github.event_name != 'pull_request' - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.2.1 with: token: ${{ secrets.API_GITHUB_TOKEN }} - name: Checkout without token if: github.event_name == 'pull_request' - uses: actions/checkout@v4.1.4 + uses: actions/checkout@v4.2.1 - name: Fetch Go version run: | @@ -28,7 +28,7 @@ jobs: echo "go_version=$GO_VERSION" >> $GITHUB_ENV - name: Setup Go environment - uses: actions/setup-go@v5.0.0 + uses: actions/setup-go@v5.0.2 with: go-version: "${{ env.go_version }}" @@ -37,7 +37,7 @@ jobs: - name: Version if: github.event_name != 'pull_request' - uses: cycjimmy/semantic-release-action@v4.1.0 + uses: cycjimmy/semantic-release-action@v4.1.1 with: semantic_version: 17.4 env: diff --git a/Dockerfile b/Dockerfile index 2caa55e..2130f33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.2-alpine AS builder +FROM golang:1.23.2-alpine AS builder WORKDIR /src COPY . .