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
10 changes: 5 additions & 5 deletions .github/workflows/reusable-ci-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,14 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v5.2.0
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ inputs.go-version }}
cache: true
cache-dependency-path: ${{ inputs.working-directory }}/go.sum

- name: Run golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v6.5.0
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9.2.0
with:
version: ${{ inputs.golangci-lint-version }}
args: --timeout=${{ inputs.lint-timeout }}
Expand All @@ -121,7 +121,7 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v5.2.0
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ inputs.go-version }}
cache: true
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v5.2.0
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ matrix.go-version }}
cache: true
Expand Down Expand Up @@ -231,7 +231,7 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v5.2.0
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c # v6.1.0
with:
go-version: ${{ inputs.go-version }}
cache: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-ci-typescript.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:

- name: Upload coverage report
if: inputs.upload-coverage
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.4.2
uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de # v5.5.2
with:
files: ./coverage/lcov.info
fail_ci_if_error: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Install lychee
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.3.0
uses: lycheeverse/lychee-action@a8c4c7cb88f0c7386610c35eb25108e448569cb0 # v2.7.0
with:
args: >-
--verbose
Expand Down Expand Up @@ -218,7 +218,7 @@ jobs:

- name: Upload Pages artifact
if: inputs.deploy-to-pages
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v3.0.1
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

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

The version comment change from v3.0.1 to v4.0.0 for actions/upload-pages-artifact appears incorrect. This SHA (7b1f4a764d45c48632c6b24a0339c27f5614fb0b) needs to be verified against the actual release tags in the actions/upload-pages-artifact repository to determine the correct version comment.

Suggested change
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4.0.0
uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v3.0.1

Copilot uses AI. Check for mistakes.
with:
path: ${{ inputs.working-directory }}/${{ inputs.output-directory }}

Expand All @@ -236,4 +236,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v6.0.1
uses: actions/deploy-pages@d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e # v4.0.5
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

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

The version comment change from v6.0.1 to v4.0.5 for actions/deploy-pages appears incorrect. Version numbers should not decrease (going from v6 to v4 suggests a downgrade). This SHA (d6db90164ac5ed86f2b6aed7e0febac5b3c0c03e) needs to be verified against the actual release tags in the actions/deploy-pages repository to determine the correct version comment.

Copilot uses AI. Check for mistakes.
4 changes: 2 additions & 2 deletions .github/workflows/reusable-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,14 +214,14 @@ jobs:

- name: Download artifacts
if: inputs.upload-artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v6.0.1
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

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

The version comment change from v6.0.1 to v4.1.8 for actions/download-artifact appears incorrect. Version numbers should not decrease (going from v6 to v4 suggests a downgrade). This SHA (fa0a91b85d4f404e444e00e005971372dc801d16) needs to be verified against the actual release tags in the actions/download-artifact repository to determine the correct version comment.

Copilot uses AI. Check for mistakes.
with:
path: release-artifacts
continue-on-error: true

- name: Create GitHub Release
id: create-release
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.2.1
uses: softprops/action-gh-release@a06a81a03ee405af7f2048a818ed3f03bbf83c7b # v2.5.0
with:
tag_name: ${{ steps.version.outputs.tag }}
name: Release ${{ steps.version.outputs.tag }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1

- name: Set up Python
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v5.3.0
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
with:
python-version: ${{ inputs.python-version }}

Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
GO_AUDIT_ENABLED: ${{ inputs.go-audit }}
steps:
- name: Download all artifacts
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v6.0.1
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

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

The version comment change from v6.0.1 to v4.1.8 for actions/download-artifact appears incorrect. Version numbers should not decrease (going from v6 to v4 suggests a downgrade). This SHA (fa0a91b85d4f404e444e00e005971372dc801d16) needs to be verified against the actual release tags in the actions/download-artifact repository to determine the correct version comment.

Copilot uses AI. Check for mistakes.
with:
path: security-results
continue-on-error: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,15 @@ jobs:

steps:
- name: Checkout repository
# actions/checkout v4.2.2 - 2024-10-31
# actions/checkout v6.0.1 - 2025-12-28
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
with:
sparse-checkout: |
labels.yml
sparse-checkout-cone-mode: false

- name: Setup Node.js
# actions/setup-node v4.1.0 - 2024-10-24
# actions/setup-node v6.1.0 - 2025-12-28
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f
with:
node-version: '20'
Expand Down
4 changes: 2 additions & 2 deletions actions/setup-node-pnpm/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ runs:
using: 'composite'
steps:
- name: Setup pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v6.0.1
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
Copy link

Copilot AI Dec 28, 2025

Choose a reason for hiding this comment

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

The version comment change from v6.0.1 to v4.2.0 for pnpm/action-setup appears incorrect. Version numbers should not decrease (going from v6 to v4 suggests a downgrade). This SHA (41ff72655975bd51cab0327fa583b6e92b6d3061) needs to be verified against the actual release tags in the pnpm/action-setup repository to determine the correct version comment.

Suggested change
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # pnpm/action-setup pinned SHA

Copilot uses AI. Check for mistakes.

- name: Setup Node.js
id: node
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.0.1
uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f # v6.1.0
with:
node-version: ${{ inputs.node-version }}
cache: 'pnpm'
Expand Down
2 changes: 1 addition & 1 deletion actions/setup-python-uv/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ runs:
steps:
- name: Install uv
id: uv
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v6.0.1
uses: astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
with:
enable-cache: true
cache-dependency-glob: "${{ inputs.working-directory }}/uv.lock"
Expand Down