From cfeb6c7cc37ce463796fe8430e7a942ede62f0cb Mon Sep 17 00:00:00 2001 From: Michael Winter Date: Mon, 3 Feb 2025 11:49:42 +1100 Subject: [PATCH] ci(actions): update github action to use latest corepack --- .changeset/spotty-lies-beg.md | 2 ++ .github/actions/setup/action.yml | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 .changeset/spotty-lies-beg.md diff --git a/.changeset/spotty-lies-beg.md b/.changeset/spotty-lies-beg.md new file mode 100644 index 00000000000..a845151cc84 --- /dev/null +++ b/.changeset/spotty-lies-beg.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index f955c4409ec..db4f3f22fd1 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -8,7 +8,9 @@ runs: using: composite steps: - name: Install package manager via corepack - run: corepack enable + run: | + npm install -g corepack@v0.31.0 + corepack enable shell: bash - name: Cache pnpm store