Skip to content
Merged
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
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.21'
go-version: '1.25'
cache: true

- name: Install bc for floating-point math
Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:

- name: Comment on PR
if: github.event_name == 'pull_request'
uses: actions/github-script@v7
uses: actions/github-script@v8
env:
COMMENT_BODY: ${{ steps.comment.outputs.comment_body }}
with:
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
# Badge can be updated manually or via a separate workflow with appropriate permissions

- name: Upload coverage artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-report
path: |
Expand All @@ -223,12 +223,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.21'
go-version: '1.25'
cache: true

- name: Install golangci-lint
Expand All @@ -244,12 +244,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.21'
go-version: '1.25'
cache: true

- name: Build
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

- name: Fetch all tags
run: git fetch --force --tags

- name: Set up Go
uses: actions/setup-go@v5
uses: actions/setup-go@v6
with:
go-version: '1.21'
cache: true
Expand All @@ -34,10 +34,10 @@ jobs:
cosign-release: 'v2.2.4'

- name: Install syft (for SBOM generation)
uses: anchore/sbom-action/download-syft@v0.15.10
uses: anchore/sbom-action/download-syft@v0.22.2

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v5
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
Expand All @@ -46,7 +46,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload release artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: release-artifacts
path: |
Expand Down
2 changes: 1 addition & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ See [TESTING.md](docs/TESTING.md) for details.

## Core Dependencies

- **Go 1.21+** with generics
- **Go 1.25+**
- **datadog-api-client-go** - Official API client
- **cobra** - CLI framework
- **viper** - Configuration
Expand Down