From 69e3731badc935bb91a6308fa5a9995ab698577f Mon Sep 17 00:00:00 2001 From: Christian Kaltenbach Date: Tue, 5 May 2026 12:37:32 +0200 Subject: [PATCH 1/2] adds initial POC to use npm v11.3.0 --- .github/workflows/fe-build.yml | 2 ++ .github/workflows/fe-check-upmerge.yml | 3 ++- .github/workflows/fe-cleanup-snapshots.yml | 3 ++- .github/workflows/fe-code-quality.yml | 2 ++ .github/workflows/fe-e2e.yml | 3 +++ .github/workflows/fe-install-deps.yml | 2 ++ .github/workflows/fe-licenses.yml | 2 ++ .github/workflows/fe-pr-close.yml | 2 ++ .github/workflows/fe-pr-snapshot.yml | 2 ++ .github/workflows/fe-release.yml | 2 ++ .github/workflows/fe-snapshot.yml | 2 ++ .github/workflows/fe-sonar.yml | 2 ++ .github/workflows/fe-tag.yml | 2 ++ 13 files changed, 27 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fe-build.yml b/.github/workflows/fe-build.yml index aa845b88..b335daef 100644 --- a/.github/workflows/fe-build.yml +++ b/.github/workflows/fe-build.yml @@ -33,6 +33,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-check-upmerge.yml b/.github/workflows/fe-check-upmerge.yml index c9416e3e..cf31fb48 100644 --- a/.github/workflows/fe-check-upmerge.yml +++ b/.github/workflows/fe-check-upmerge.yml @@ -23,7 +23,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 - + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-cleanup-snapshots.yml b/.github/workflows/fe-cleanup-snapshots.yml index 8cc537e7..79ef772b 100644 --- a/.github/workflows/fe-cleanup-snapshots.yml +++ b/.github/workflows/fe-cleanup-snapshots.yml @@ -25,7 +25,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 - + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-code-quality.yml b/.github/workflows/fe-code-quality.yml index e062a775..e728bd71 100644 --- a/.github/workflows/fe-code-quality.yml +++ b/.github/workflows/fe-code-quality.yml @@ -47,6 +47,8 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-e2e.yml b/.github/workflows/fe-e2e.yml index b0e3644c..0fd122ca 100644 --- a/.github/workflows/fe-e2e.yml +++ b/.github/workflows/fe-e2e.yml @@ -39,6 +39,9 @@ jobs: path: '**/node_modules' key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} + - name: "Install required npm version" + run: npm install -g npm@11.3.0 + - name: Install Cypress Binary run: npx cypress install diff --git a/.github/workflows/fe-install-deps.yml b/.github/workflows/fe-install-deps.yml index 75b02bc3..672e6d43 100644 --- a/.github/workflows/fe-install-deps.yml +++ b/.github/workflows/fe-install-deps.yml @@ -27,6 +27,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-licenses.yml b/.github/workflows/fe-licenses.yml index 8e723a15..e02ee433 100644 --- a/.github/workflows/fe-licenses.yml +++ b/.github/workflows/fe-licenses.yml @@ -30,6 +30,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-pr-close.yml b/.github/workflows/fe-pr-close.yml index 7c144993..453e7064 100644 --- a/.github/workflows/fe-pr-close.yml +++ b/.github/workflows/fe-pr-close.yml @@ -28,6 +28,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-pr-snapshot.yml b/.github/workflows/fe-pr-snapshot.yml index b51cf346..5cfae0c0 100644 --- a/.github/workflows/fe-pr-snapshot.yml +++ b/.github/workflows/fe-pr-snapshot.yml @@ -31,6 +31,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-release.yml b/.github/workflows/fe-release.yml index 3bf668b3..8a282d4f 100644 --- a/.github/workflows/fe-release.yml +++ b/.github/workflows/fe-release.yml @@ -28,6 +28,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache diff --git a/.github/workflows/fe-snapshot.yml b/.github/workflows/fe-snapshot.yml index 7dbd4f69..6ab25c41 100644 --- a/.github/workflows/fe-snapshot.yml +++ b/.github/workflows/fe-snapshot.yml @@ -32,6 +32,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 diff --git a/.github/workflows/fe-sonar.yml b/.github/workflows/fe-sonar.yml index 0c113386..629c9f92 100644 --- a/.github/workflows/fe-sonar.yml +++ b/.github/workflows/fe-sonar.yml @@ -45,6 +45,8 @@ jobs: uses: actions/setup-node@v6 with: node-version-file: .nvmrc + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache diff --git a/.github/workflows/fe-tag.yml b/.github/workflows/fe-tag.yml index 9b5fa22d..4d6ada33 100644 --- a/.github/workflows/fe-tag.yml +++ b/.github/workflows/fe-tag.yml @@ -35,6 +35,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 22.15.0 + - name: "Install required npm version" + run: npm install -g npm@11.3.0 - name: Cache Node Modules id: npm-cache uses: actions/cache@v4 From 15d477d4cbbdd71920ffe86dec092f8c56bdfb3d Mon Sep 17 00:00:00 2001 From: Christian Kaltenbach Date: Tue, 5 May 2026 12:39:17 +0200 Subject: [PATCH 2/2] adds references to feature branch --- .github/workflow-templates/fe/fe-check-upmerge.yml | 2 +- .github/workflow-templates/fe/fe-cleanup-snapshots.yml | 2 +- .github/workflow-templates/fe/fe-licenses.yml | 2 +- .github/workflow-templates/fe/fe-main.yml | 8 ++++---- .github/workflow-templates/fe/fe-pr-close.yml | 2 +- .github/workflow-templates/fe/fe-pr-snapshot.yml | 2 +- .github/workflow-templates/fe/fe-pr.yml | 8 ++++---- .github/workflow-templates/fe/fe-release.yml | 8 ++++---- .github/workflow-templates/fe/fe-tag-pushed.yml | 2 +- .github/workflows/fe-build.yml | 2 +- .github/workflows/fe-check-upmerge.yml | 2 +- .github/workflows/fe-cleanup-snapshots.yml | 2 +- .github/workflows/fe-code-quality.yml | 2 +- .github/workflows/fe-e2e.yml | 2 +- .github/workflows/fe-pr-close.yml | 2 +- .github/workflows/fe-pr-snapshot.yml | 2 +- .github/workflows/fe-release.yml | 2 +- .github/workflows/fe-snapshot.yml | 2 +- .github/workflows/fe-tag.yml | 2 +- 19 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflow-templates/fe/fe-check-upmerge.yml b/.github/workflow-templates/fe/fe-check-upmerge.yml index ccb5b401..e05e2e16 100644 --- a/.github/workflow-templates/fe/fe-check-upmerge.yml +++ b/.github/workflow-templates/fe/fe-check-upmerge.yml @@ -12,7 +12,7 @@ permissions: jobs: check-upmerge: - uses: collaborationFactory/github-actions/.github/workflows/fe-check-upmerge.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-check-upmerge.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe secrets: SLACK_TOKEN_UPMERGE: ${{ secrets.SLACK_TOKEN_UPMERGE }} GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }} diff --git a/.github/workflow-templates/fe/fe-cleanup-snapshots.yml b/.github/workflow-templates/fe/fe-cleanup-snapshots.yml index d21d48d3..5d106a6d 100644 --- a/.github/workflow-templates/fe/fe-cleanup-snapshots.yml +++ b/.github/workflow-templates/fe/fe-cleanup-snapshots.yml @@ -12,7 +12,7 @@ permissions: jobs: cleanup-snapshots: - uses: collaborationFactory/github-actions/.github/workflows/fe-cleanup-snapshots.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-cleanup-snapshots.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe secrets: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflow-templates/fe/fe-licenses.yml b/.github/workflow-templates/fe/fe-licenses.yml index 1e49f836..36eff8be 100644 --- a/.github/workflow-templates/fe/fe-licenses.yml +++ b/.github/workflow-templates/fe/fe-licenses.yml @@ -17,7 +17,7 @@ env: jobs: check-licenses: - uses: collaborationFactory/github-actions/.github/workflows/fe-licenses.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-licenses.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: FOSS_DIST: dist CUSTOM_LICENSES_JSON: custom-licenses/custom-licenses.json diff --git a/.github/workflow-templates/fe/fe-main.yml b/.github/workflow-templates/fe/fe-main.yml index 3aadc07c..a972183a 100644 --- a/.github/workflow-templates/fe/fe-main.yml +++ b/.github/workflow-templates/fe/fe-main.yml @@ -17,7 +17,7 @@ env: jobs: install-deps: - uses: collaborationFactory/github-actions/.github/workflows/fe-install-deps.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-install-deps.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' secrets: @@ -26,7 +26,7 @@ jobs: # This job is only needed in case you are using Percy e2e-tests: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-e2e.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-e2e.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' GHA_BASE: ${{ github.event.before }} @@ -35,14 +35,14 @@ jobs: build: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-build.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-build.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' GHA_BASE: ${{ github.event.before }} snapshot: needs: build - uses: collaborationFactory/github-actions/.github/workflows/fe-snapshot.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-snapshot.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' GHA_BASE: ${{ github.event.before }} diff --git a/.github/workflow-templates/fe/fe-pr-close.yml b/.github/workflow-templates/fe/fe-pr-close.yml index a32b1a93..1d4e3b0d 100644 --- a/.github/workflow-templates/fe/fe-pr-close.yml +++ b/.github/workflow-templates/fe/fe-pr-close.yml @@ -13,7 +13,7 @@ permissions: jobs: remove-artifacts: - uses: collaborationFactory/github-actions/.github/workflows/fe-pr-close.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-pr-close.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_BASE: ${{ github.event.pull_request.base.ref }} secrets: diff --git a/.github/workflow-templates/fe/fe-pr-snapshot.yml b/.github/workflow-templates/fe/fe-pr-snapshot.yml index f02e9924..f042d4eb 100644 --- a/.github/workflow-templates/fe/fe-pr-snapshot.yml +++ b/.github/workflow-templates/fe/fe-pr-snapshot.yml @@ -13,7 +13,7 @@ permissions: jobs: publish-pr-snapshot: - uses: collaborationFactory/github-actions/.github/workflows/fe-pr-snapshot.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-pr-snapshot.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_BASE: ${{ github.event.pull_request.base.ref }} secrets: diff --git a/.github/workflow-templates/fe/fe-pr.yml b/.github/workflow-templates/fe/fe-pr.yml index 5f55be12..926d2957 100644 --- a/.github/workflow-templates/fe/fe-pr.yml +++ b/.github/workflow-templates/fe/fe-pr.yml @@ -16,7 +16,7 @@ env: jobs: install-deps: - uses: collaborationFactory/github-actions/.github/workflows/fe-install-deps.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-install-deps.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: ${{ github.event.pull_request.head.ref }} secrets: @@ -24,20 +24,20 @@ jobs: build: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-build.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-build.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: ${{ github.event.pull_request.head.ref }} GHA_BASE: ${{ github.event.pull_request.base.ref }} code-quality: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-code-quality.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-code-quality.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: ${{ github.event.pull_request.head.ref }} GHA_BASE: ${{ github.event.pull_request.base.ref }} e2e: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-e2e.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-e2e.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: ${{ github.event.pull_request.head.ref }} GHA_BASE: ${{ github.event.pull_request.base.ref }} diff --git a/.github/workflow-templates/fe/fe-release.yml b/.github/workflow-templates/fe/fe-release.yml index 9dca4cda..cae5e73b 100644 --- a/.github/workflow-templates/fe/fe-release.yml +++ b/.github/workflow-templates/fe/fe-release.yml @@ -16,7 +16,7 @@ env: jobs: install-deps: - uses: collaborationFactory/github-actions/.github/workflows/fe-install-deps.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-install-deps.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' secrets: @@ -24,7 +24,7 @@ jobs: e2e-tests: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-e2e.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-e2e.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' GHA_BASE: ${{ github.event.before }} @@ -33,14 +33,14 @@ jobs: build: needs: install-deps - uses: collaborationFactory/github-actions/.github/workflows/fe-build.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-build.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' GHA_BASE: ${{ github.event.before }} tag: needs: [build, e2e-tests] - uses: collaborationFactory/github-actions/.github/workflows/fe-tag.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-tag.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: GHA_REF: '' GHA_BASE: ${{ github.event.before }} diff --git a/.github/workflow-templates/fe/fe-tag-pushed.yml b/.github/workflow-templates/fe/fe-tag-pushed.yml index 8b2be75c..4bbb30e7 100644 --- a/.github/workflow-templates/fe/fe-tag-pushed.yml +++ b/.github/workflow-templates/fe/fe-tag-pushed.yml @@ -16,7 +16,7 @@ env: jobs: release-version: - uses: collaborationFactory/github-actions/.github/workflows/fe-release.yml@release/26.2 + uses: collaborationFactory/github-actions/.github/workflows/fe-release.yml@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe secrets: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflows/fe-build.yml b/.github/workflows/fe-build.yml index b335daef..2b1d1d07 100644 --- a/.github/workflows/fe-build.yml +++ b/.github/workflows/fe-build.yml @@ -46,7 +46,7 @@ jobs: run: git fetch origin ${{ inputs.GHA_BASE }}:${{ inputs.GHA_BASE }} || true - name: Build and Storybook - uses: collaborationFactory/github-actions/.github/actions/run-many@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/run-many@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: target: ${{ matrix.target }} jobIndex: ${{ matrix.jobIndex }} diff --git a/.github/workflows/fe-check-upmerge.yml b/.github/workflows/fe-check-upmerge.yml index cf31fb48..c0ffc5c5 100644 --- a/.github/workflows/fe-check-upmerge.yml +++ b/.github/workflows/fe-check-upmerge.yml @@ -33,7 +33,7 @@ jobs: key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} - name: check if upmerge is necessary and post to slack - uses: collaborationFactory/github-actions/.github/actions/upmerge@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/upmerge@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: SLACK_TOKEN_UPMERGE: ${{ secrets.SLACK_TOKEN_UPMERGE }} GIT_USER_EMAIL: ${{ secrets.GIT_USER_EMAIL }} diff --git a/.github/workflows/fe-cleanup-snapshots.yml b/.github/workflows/fe-cleanup-snapshots.yml index 79ef772b..ba443619 100644 --- a/.github/workflows/fe-cleanup-snapshots.yml +++ b/.github/workflows/fe-cleanup-snapshots.yml @@ -40,7 +40,7 @@ jobs: dot-npmrc: ${{ secrets.DOT_NPMRC }} - name: Cleanup Snapshot Artifacts - uses: collaborationFactory/github-actions/.github/actions/snapshots@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/snapshots@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflows/fe-code-quality.yml b/.github/workflows/fe-code-quality.yml index e728bd71..f8c2de69 100644 --- a/.github/workflows/fe-code-quality.yml +++ b/.github/workflows/fe-code-quality.yml @@ -67,7 +67,7 @@ jobs: - name: Unit Tests id: test - uses: collaborationFactory/github-actions/.github/actions/run-many@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/run-many@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe continue-on-error: true with: target: ${{ matrix.target }} diff --git a/.github/workflows/fe-e2e.yml b/.github/workflows/fe-e2e.yml index 0fd122ca..a8b6964d 100644 --- a/.github/workflows/fe-e2e.yml +++ b/.github/workflows/fe-e2e.yml @@ -51,7 +51,7 @@ jobs: - name: Affected Regression Tests id: regressionTests continue-on-error: true - uses: collaborationFactory/github-actions/.github/actions/run-many@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/run-many@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe with: target: ${{ matrix.target }} jobIndex: ${{ matrix.jobIndex }} diff --git a/.github/workflows/fe-pr-close.yml b/.github/workflows/fe-pr-close.yml index 453e7064..37a9cbf0 100644 --- a/.github/workflows/fe-pr-close.yml +++ b/.github/workflows/fe-pr-close.yml @@ -47,7 +47,7 @@ jobs: run: npm ci - name: Delete Snapshots from NPM Registry - uses: collaborationFactory/github-actions/.github/actions/artifacts@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/artifacts@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflows/fe-pr-snapshot.yml b/.github/workflows/fe-pr-snapshot.yml index 5cfae0c0..9fa07091 100644 --- a/.github/workflows/fe-pr-snapshot.yml +++ b/.github/workflows/fe-pr-snapshot.yml @@ -65,7 +65,7 @@ jobs: run: npm ci - name: Build and Push to Jfrog NPM Registry - uses: collaborationFactory/github-actions/.github/actions/artifacts@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/artifacts@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflows/fe-release.yml b/.github/workflows/fe-release.yml index 8a282d4f..88ec701d 100644 --- a/.github/workflows/fe-release.yml +++ b/.github/workflows/fe-release.yml @@ -52,7 +52,7 @@ jobs: uses: dawidd6/action-get-tag@v1 - name: Build and Push to Jfrog NPM Registry - uses: collaborationFactory/github-actions/.github/actions/artifacts@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/artifacts@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflows/fe-snapshot.yml b/.github/workflows/fe-snapshot.yml index 6ab25c41..47f1ba92 100644 --- a/.github/workflows/fe-snapshot.yml +++ b/.github/workflows/fe-snapshot.yml @@ -42,7 +42,7 @@ jobs: key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} - name: Build and Push to Jfrog NPM Registry - uses: collaborationFactory/github-actions/.github/actions/artifacts@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/artifacts@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }} diff --git a/.github/workflows/fe-tag.yml b/.github/workflows/fe-tag.yml index 4d6ada33..60723d36 100644 --- a/.github/workflows/fe-tag.yml +++ b/.github/workflows/fe-tag.yml @@ -50,7 +50,7 @@ jobs: git config user.email ${{ secrets.GIT_USER_EMAIL }} - name: Bump Version and Push new Tag - uses: collaborationFactory/github-actions/.github/actions/artifacts@release/26.2 + uses: collaborationFactory/github-actions/.github/actions/artifacts@improvement/PFM-ISSUE-33592-Create-release-26-2-for-cplace-remote-filesystem-fe env: JFROG_BASE64_TOKEN: ${{ secrets.JFROG_BASE64_TOKEN }} JFROG_URL: ${{ secrets.JFROG_URL }}