Skip to content

Commit 400dc68

Browse files
chore(ci): revert pnpm migration; hosted runner does not provides pnpm by default:
https://github.com/actions/runner-images/blob/main/images/ubuntu/Ubuntu2204-Readme.md ---- Revert "perf(ci): use pnpx instead of npx" This reverts commit f66fcad. Revert "perf(ci): use pnpx instead of npx, part 2" This reverts commit 9f12065. Revert "perf(ci): use pnpx instead of npx, part 3" This reverts commit 1082622.
1 parent a81e619 commit 400dc68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/validate-renovate.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ jobs:
2323
ver="37.291.0"
2424
# pinned on exact version
2525
package="renovate@=$ver"
26-
echo "npx: $(pnpm --version)"
26+
echo "npx: $(npx --version)"
2727
echo "installing: $package..."
2828
export H="$(mktemp)"
2929
echo '{' >> "$H"
3030
# let's do main part, but avoid pipefail
31-
(pnpx -c --package "$package" dlx renovate-config-validator --strict || true)\
31+
(npx --yes --package "$package" -- renovate-config-validator --strict || true)\
3232
| ruby -e 'File.open(ENV[?H], ?a) {|r| while gets; puts $_; $> = r if $_.strip == "WARN: Config migration necessary" ;end; }'
3333
echo '}' >> "$H"
3434

0 commit comments

Comments
 (0)