Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -342,13 +342,13 @@
run: |
pnpm config set auto-install-peers true
pnpm config set exclude-links-from-lockfile true

- name: Update npm
run: |
npm install -g npm@^11.6
npm install -g --force npm@^11.6
npm --version

- name: Install dependencies

Check notice on line 351 in .github/workflows/release.yml

View check run for this annotation

Claude / Claude Code Review

Deprecated ::set-output syntax in charts-release job

The charts-release job's 'Output new version' step uses the deprecated '::set-output' workflow command (disabled by GitHub in May 2023), so 'needs.charts-release.outputs.version' is always empty on modern runners. This is a pre-existing issue unrelated to this PR's change, but since this PR already touches release.yml it's a good time to fix line 176 to use 'echo "version=$(...)" >> $GITHUB_OUTPUT'.
Comment thread
mishushakov marked this conversation as resolved.
run: pnpm install --frozen-lockfile

- name: Create new versions
Expand Down
Loading