Skip to content

Commit

Permalink
fix: bump deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ViRb3 committed Oct 21, 2024
1 parent d889ebb commit 27e336a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "/"
Expand All @@ -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: "/"
Expand All @@ -25,4 +25,4 @@ updates:
commit-message:
prefix: "fix"
include: "scope"
open-pull-requests-limit: 10
open-pull-requests-limit: 20
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -22,12 +22,12 @@ jobs:
echo "go_version=$GO_VERSION" >> $GITHUB_ENV
- name: Setup Go environment
uses: actions/[email protected].0
uses: actions/[email protected].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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -28,7 +28,7 @@ jobs:
echo "go_version=$GO_VERSION" >> $GITHUB_ENV
- name: Setup Go environment
uses: actions/[email protected].0
uses: actions/[email protected].2
with:
go-version: "${{ env.go_version }}"

Expand All @@ -37,7 +37,7 @@ jobs:

- name: Version
if: github.event_name != 'pull_request'
uses: cycjimmy/[email protected].0
uses: cycjimmy/[email protected].1
with:
semantic_version: 17.4
env:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.22.2-alpine AS builder
FROM golang:1.23.2-alpine AS builder

WORKDIR /src
COPY . .
Expand Down

0 comments on commit 27e336a

Please sign in to comment.