Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
a8092ea
chore: deps(github): bump Action release for actions/checkout from v4...
Jan 21, 2026
5eb0f5a
chore: deps(github): bump Action tag for actions/checkout from v4.2.2...
Jan 21, 2026
c982628
chore: deps(github): bump Action tag for github/codeql-action/init fr...
Jan 21, 2026
e628f69
chore: deps(github): bump Action release for github/codeql-action/aut...
Jan 21, 2026
8664bd8
chore: deps(github): bump Action tag for github/codeql-action/analyze...
Jan 21, 2026
42cd6b6
chore: deps(github): bump Action release for actions/setup-go from v5...
Jan 21, 2026
b6f3ed0
chore: deps(github): bump Action release for actions/checkout from v4...
Jan 21, 2026
2c3e5b9
chore: deps(github): bump Action tag for actions/checkout from v4.2.2...
Jan 21, 2026
a7a8618
chore: deps(github): bump Action tag for golangci/golangci-lint-actio...
Jan 21, 2026
a4c22c4
chore: deps(github): bump Action tag for goreleaser/goreleaser-action...
Jan 21, 2026
2915235
chore: deps(github): bump Action tag for codecov/codecov-action from ...
Jan 21, 2026
3c280f3
chore: deps(github): bump Action tag for release-drafter/release-draf...
Jan 21, 2026
59d059c
chore: deps(github): bump Action release for actions/checkout from v4...
Jan 21, 2026
a3d0916
chore: deps(github): bump Action tag for actions/checkout from v4.2.2...
Jan 21, 2026
5770247
chore: deps(github): bump Action tag for docker/setup-qemu-action fro...
Jan 21, 2026
a27c000
chore: deps(github): bump Action release for docker/setup-buildx-acti...
Jan 21, 2026
e2b2af5
chore: deps(github): bump Action release for actions/setup-go from v5...
Jan 21, 2026
35a6a32
chore: deps(github): bump Action release for goreleaser/goreleaser-ac...
Jan 21, 2026
0e893cc
chore: deps(github): bump Action release for sigstore/cosign-installe...
Jan 21, 2026
82bdb77
chore: deps(github): bump Action tag for anchore/sbom-action/download...
Jan 21, 2026
9ca532c
chore: deps(github): bump Action release for docker/login-action from...
Jan 21, 2026
93e0c1e
chore: deps(github): bump Action release for docker/login-action from...
Jan 21, 2026
b95889d
chore: deps(github): bump Action release for anchore/sbom-action/down...
Jan 22, 2026
0f23e61
chore: deps(github): bump Action tag for release-drafter/release-draf...
Jan 23, 2026
72f3673
chore: deps(github): bump Action release for github/codeql-action/ini...
Jan 24, 2026
21b1d09
chore: deps(github): bump Action tag for github/codeql-action/autobui...
Jan 24, 2026
c66ad1d
chore: deps(github): bump Action release for github/codeql-action/ana...
Jan 24, 2026
1f49ebf
chore: deps(github): bump Action release for github/codeql-action/ini...
Jan 27, 2026
fd69662
chore: deps(github): bump Action tag for github/codeql-action/autobui...
Jan 27, 2026
4585072
chore: deps(github): bump Action tag for github/codeql-action/analyze...
Jan 27, 2026
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
8 changes: 4 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Expand All @@ -30,14 +30,14 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3.29.3
uses: github/codeql-action/init@v4.32.0
# Override language selection by uncommenting this and choosing your languages
with:
languages: go
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v3.29.3
uses: github/codeql-action/autobuild@v4.32.0
#- run: |
# make bootstrap
# make release
Expand All @@ -48,4 +48,4 @@ jobs:
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language
uses: github/codeql-action/analyze@v3.29.3
uses: github/codeql-action/analyze@v4.32.0
10 changes: 5 additions & 5 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,25 +21,25 @@ jobs:
steps:
# https://github.com/actions/setup-go
- name: Set up Go
uses: actions/setup-go@v5.5.0
uses: actions/setup-go@v6.2.0
with:
cache: false
go-version: 1.25.1
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4.2.2
uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: golangci-lint
uses: golangci/golangci-lint-action@v8.0.0
uses: golangci/golangci-lint-action@v9.2.0
with:
# Required: the version of golangci-lint is required
# and must be specified without patch version:
# we always use the latest patch version.
version: v2.4.0
install-mode: "binary"
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v6.3.0
uses: goreleaser/goreleaser-action@v6.4.0
with:
install-only: true
- name: Show GoReleaser version
Expand All @@ -60,7 +60,7 @@ jobs:
if: ${{ github.event_name == 'schedule' }}
# Codecov should only be updated if make test is executed
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5.4.3
uses: codecov/codecov-action@v5.5.2
if: ${{ github.event_name == 'schedule' }}
# Manage and run your integration tests with efficiency
# https://github.com/ovh/venom
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: release-drafter/release-drafter@v6.1.0
- uses: release-drafter/release-drafter@v6.2.0
with:
config-name: release-drafter.yaml
env:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,37 +16,37 @@ jobs:
DOCKER_CLI_EXPERIMENTAL: "enabled"
DOCKER_BUILDKIT: 1
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v6.0.2
with:
fetch-depth: 0
- name: Set up QEMU
uses: docker/setup-qemu-action@v3.6.0
uses: docker/setup-qemu-action@v3.7.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.11.1
uses: docker/setup-buildx-action@v3.12.0
# https://github.com/actions/setup-go
- name: Set up Go
uses: actions/setup-go@v5.5.0
uses: actions/setup-go@v6.2.0
with:
cache: false
go-version: 1.25.1
id: go
- name: Install GoReleaser
uses: goreleaser/goreleaser-action@v6.3.0
uses: goreleaser/goreleaser-action@v6.4.0
with:
install-only: true
- name: Show GoReleaser version
run: goreleaser --version
- name: Install Cosign
uses: sigstore/cosign-installer@v3.9.2
uses: sigstore/cosign-installer@v4.0.0
- name: Install Syft
uses: anchore/sbom-action/download-syft@v0.20.4
uses: anchore/sbom-action/download-syft@v0.22.0
- name: Login to DockerHub
uses: docker/login-action@v3.4.0
uses: docker/login-action@v3.6.0
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Login to GitHub Docker Registry
uses: docker/login-action@v3.4.0
uses: docker/login-action@v3.6.0
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
Expand Down
Loading