Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changes/unreleased/Dependency-20251101-190557.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
kind: Dependency
body: 'chore(deps): bump the github-actions group across 1 directory with 7 updates'
time: 2025-11-01T19:05:57.575050881Z
4 changes: 2 additions & 2 deletions .github/workflows/dependabot-changie.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.actor == 'dependabot[bot]'
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Fetch Dependabot metadata
id: dependabot-metadata
Expand All @@ -29,7 +29,7 @@ jobs:
version: latest
args: new --body "${{ github.event.pull_request.title }}" --kind Dependency

- uses: stefanzweifel/git-auto-commit-action@v7-next
- uses: stefanzweifel/git-auto-commit-action@v7.0.0
with:
commit_message: "chore(deps): add changelog for dependabot updates"
commit_user_name: "dependabot[bot]"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: "1.21"

Expand All @@ -24,7 +24,7 @@ jobs:
PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --rm-dist
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,24 +8,24 @@ jobs:
runs-on: ubuntu-latest

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

- name: Set up Go 1.21
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: "1.21"

- name: golangci-lint
continue-on-error: true
uses: golangci/golangci-lint-action@v6
uses: golangci/golangci-lint-action@v8
with:
args: --issues-exit-code=0 --timeout=5m

- name: Run tests
run: go test -race -coverprofile=coverage.out -covermode=atomic -coverpkg=./... -v ./...

- name: Upload to codecov
uses: codecov/codecov-action@v4
uses: codecov/codecov-action@v5
with:
verbose: true

Expand All @@ -38,12 +38,12 @@ jobs:
pull-requests: write
actions: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0

- name: Prepare release
uses: labd/changie-release-action@v0.3.2
uses: labd/changie-release-action@v0.6.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
release-workflow: 'release.yaml'