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
12 changes: 6 additions & 6 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
Copy link

Copilot AI Nov 28, 2025

Choose a reason for hiding this comment

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

The update to actions/[email protected] introduces a breaking change that requires GitHub Actions Runner version v2.329.0 or later for Docker container action scenarios. According to the release notes, this version persists credentials under $RUNNER_TEMP instead of directly in the local git config. Please verify that your GitHub Actions runners meet this minimum version requirement before merging this PR.

Additionally, note that v5.0.0 (and therefore v6.0.0) requires Runner v2.327.1 or later due to the upgrade to Node.js 24.

Copilot uses AI. Check for mistakes.
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand All @@ -68,7 +68,7 @@ jobs:
echo "Validation successful: Running from 'dev' branch."

- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
Copy link

Copilot AI Nov 28, 2025

Choose a reason for hiding this comment

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

The update to actions/[email protected] introduces a breaking change to automatic caching behavior. According to the release notes, v6.0.0 limits automatic caching to npm only (previously it supported npm, yarn, and pnpm automatically). Since this workflow uses cache: 'npm', the behavior should remain unchanged, but be aware that the automatic package manager detection from v5.0.0 has been restricted in v6.0.0.

Additionally, this version requires GitHub Actions Runner v2.327.1 or later due to the Node.js 24 upgrade.

Copilot uses AI. Check for mistakes.
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:

steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand All @@ -141,7 +141,7 @@ jobs:
echo "Validation successful: Running from tag '${{ github.ref_name }}'."

- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

steps:
- name: Checkout ${{ github.ref_name }}
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
with:
ref: ${{ github.ref }}
fetch-depth: 0
Expand All @@ -235,7 +235,7 @@ jobs:
echo "Validation successful: Running from tag '${{ github.ref_name }}'."

- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
with:
node-version: ${{ env.NODE_VERSION }}
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- id: meta
name: Metadata
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
with:
images: |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- id: meta
name: Metadata
uses: docker/metadata-action@318604b99e75e41977312d83839a89be02ca4893 # v5.9.0
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5.10.0
with:
images: |
ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
Expand Down
Loading