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
6 changes: 3 additions & 3 deletions .github/actions/setup-build-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
shell: bash

- name: Setup Go
uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 # v6.0.0
uses: actions/setup-go@4b73464bb391d4059bd26b0524d20df3927bd417 # v6.3.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Nit] setup-go bumped to v6.3.0 here, but direct workflow calls are on v6.2.0

This updates setup-go from v6.0.0 to v6.3.0, but 6 jobs across 4 workflow files (check.yml, push.yml, release.yml, release-snapshot.yml) call actions/setup-go directly at v6.2.0. After this PR, jobs using the composite action get v6.3.0 while those calling setup-go directly stay on v6.2.0.

Low practical impact since dependabot will now manage both locations going forward.

Suggestion: Either pin to v6.2.0 here to truly align, or bump the direct workflow calls to v6.3.0 in this PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#4620 is already merged.

with:
go-version-file: go.mod
cache-dependency-path: |
Expand All @@ -30,12 +30,12 @@ runs:
python-version: '3.13'

- name: Install uv
uses: astral-sh/setup-uv@85856786d1ce8acfbcc2f13a5f3fbd6b938f9f41 # v7.1.2
uses: astral-sh/setup-uv@eac588ad8def6316056a12d4907a9d4d84ff7a3b # v7.3.0
with:
version: "0.8.9"

- name: Install ruff (Python linter and formatter)
uses: astral-sh/ruff-action@57714a7c8a2e59f32539362ba31877a1957dded1 # v3.5.1
uses: astral-sh/ruff-action@4919ec5cf1f49eff0871dbcea0da843445b837e6 # v3.6.1
with:
version: "0.9.1"
args: "--version"
Expand Down
5 changes: 4 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ updates:
directory: "/tools"
schedule:
interval: "weekly"
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#directories
- package-ecosystem: "github-actions"
directory: "/"
directories:
- "/.github/workflows"
- "/.github/actions/setup-build-environment"
schedule:
interval: "monthly"
Loading