From eda292f3810e2e4daf770491aef9753dbdbc9829 Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Tue, 14 May 2024 11:34:07 +0200 Subject: [PATCH 1/7] ci(npm): try to peek into ci's env for debugging --- .github/workflows/publish.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 976fc4b0f5..506279ca65 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -25,6 +25,9 @@ jobs: key: ${{ hashFiles('**/yarn.lock') }} - uses: oven-sh/setup-bun@v1 + - run: npm config list + - run: npm whoami + - name: Install modules run: yarn install --frozen-lockfile From f406b93e25fb1c20c172ff1a89bedf714aa5fc52 Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Tue, 14 May 2024 11:37:30 +0200 Subject: [PATCH 2/7] ci(npm): try to peek into ci's env for debugging --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 506279ca65..0ced177760 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,6 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '18' - registry-url: 'https://registry.npmjs.org' - uses: actions/cache@v4 with: path: | @@ -26,6 +25,7 @@ jobs: - uses: oven-sh/setup-bun@v1 - run: npm config list + - run: npm token - run: npm whoami - name: Install modules From 7bf079025f7510766fe16ee7ac313b19b8f2ebfb Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Tue, 14 May 2024 11:43:48 +0200 Subject: [PATCH 3/7] ci(npm): try to peek into ci's env for debugging --- .github/workflows/publish.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0ced177760..e05f4cf354 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,6 +17,7 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '18' + registry-url: 'https://registry.npmjs.org' - uses: actions/cache@v4 with: path: | @@ -26,7 +27,11 @@ jobs: - run: npm config list - run: npm token + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm whoami + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Install modules run: yarn install --frozen-lockfile From 2f9aa607003305f453d5dce48e7f92178a8ca913 Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Tue, 14 May 2024 11:43:48 +0200 Subject: [PATCH 4/7] ci(npm): try to peek into ci's env for debugging --- .github/workflows/publish.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index e05f4cf354..0dd1a33384 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,9 @@ jobs: - uses: actions/setup-node@v4 with: node-version: '18' - registry-url: 'https://registry.npmjs.org' + registry-url: 'https://registry.npmjs.org/' + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - uses: actions/cache@v4 with: path: | @@ -26,6 +28,9 @@ jobs: - uses: oven-sh/setup-bun@v1 - run: npm config list + - run: echo $NODE_AUTH_TOKEN | wc -c + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm token env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} @@ -36,6 +41,8 @@ jobs: - name: Install modules run: yarn install --frozen-lockfile + - + # update npm for provenance support - run: npm --version && npm install -g npm && npm --version From b4c4e589c108ef4ecb4b8707895441d8595340d1 Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Tue, 14 May 2024 12:14:27 +0200 Subject: [PATCH 5/7] ci(npm): try to peek into ci's env for debugging --- .github/workflows/publish.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0dd1a33384..b22ed368ae 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -41,8 +41,6 @@ jobs: - name: Install modules run: yarn install --frozen-lockfile - - - # update npm for provenance support - run: npm --version && npm install -g npm && npm --version From 33db2971ffa27ee528254ccffe4b8022f2f38f16 Mon Sep 17 00:00:00 2001 From: Moritz Vetter <16950410+Isokaeder@users.noreply.github.com> Date: Tue, 14 May 2024 12:25:30 +0200 Subject: [PATCH 6/7] ci(npm): try to peek into ci's env for debugging --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b22ed368ae..387998c8cc 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -31,7 +31,8 @@ jobs: - run: echo $NODE_AUTH_TOKEN | wc -c env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - run: npm token + - run: npm config set //registry.npmjs.org/:_authToken $NODE_AUTH_TOKEN + # - run: npm token env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - run: npm whoami From d3253862865fc09ea93c8711dd3a2dc47fab1efe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Apr 2024 13:50:06 +0000 Subject: [PATCH 7/7] build(deps): bump webpack-dev-middleware from 5.3.3 to 5.3.4 Bumps [webpack-dev-middleware](https://github.com/webpack/webpack-dev-middleware) from 5.3.3 to 5.3.4. - [Release notes](https://github.com/webpack/webpack-dev-middleware/releases) - [Changelog](https://github.com/webpack/webpack-dev-middleware/blob/v5.3.4/CHANGELOG.md) - [Commits](https://github.com/webpack/webpack-dev-middleware/compare/v5.3.3...v5.3.4) --- updated-dependencies: - dependency-name: webpack-dev-middleware dependency-type: indirect ... Signed-off-by: dependabot[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 12b1c142e5..66b7f248a9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -15528,9 +15528,9 @@ webpack-bundle-analyzer@^4.9.1: ws "^7.3.1" webpack-dev-middleware@^5.0.0: - version "5.3.3" - resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz#efae67c2793908e7311f1d9b06f2a08dcc97e51f" - integrity sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA== + version "5.3.4" + resolved "https://registry.yarnpkg.com/webpack-dev-middleware/-/webpack-dev-middleware-5.3.4.tgz#eb7b39281cbce10e104eb2b8bf2b63fce49a3517" + integrity sha512-BVdTqhhs+0IfoeAf7EoH5WE+exCmqGerHfDM0IL096Px60Tq2Mn9MAbnaGUe6HiMa41KMCYF19gyzZmBcq/o4Q== dependencies: colorette "^2.0.10" memfs "^3.4.3"