From 6ca15a6232c8cd448affa8b61e110e5ef7528d1e Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Thu, 7 Mar 2024 14:24:05 +0100 Subject: [PATCH 01/10] chore: get github token for the release from github app --- .github/workflows/release-typescript-project.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-typescript-project.yml b/.github/workflows/release-typescript-project.yml index c9ad734..1acf77f 100644 --- a/.github/workflows/release-typescript-project.yml +++ b/.github/workflows/release-typescript-project.yml @@ -17,6 +17,10 @@ on: description: Flag that we need `dist` folder to start release process secrets: GH_RELEASE_TOKEN: + required: false + APP_ID: + required: true + APP_PRIVATE_KEY: required: true NPM_AUTH_TOKEN: required: false @@ -80,6 +84,12 @@ jobs: run: ${{ inputs.runAfterInstall }} if: ${{ inputs.runAfterInstall != '' }} + - uses: actions/create-github-app-token@v1 + id: app-token + with: + app-id: ${{ secrets.APP_ID }} + private-key: ${{ secrets.APP_PRIVATE_KEY }} + - name: 'Semantic Release' uses: cycjimmy/semantic-release-action@91ab76a4a393a8d0c4739e9aea1818b56bc953ea with: @@ -87,7 +97,7 @@ jobs: @semantic-release/exec@6.0.3 conventional-changelog-conventionalcommits@5.0.0 env: - GITHUB_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} + GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} HUSKY: 0 From 07acac27bda3c9a44ffa0c30a6266a1e0e8a28d3 Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 17:04:29 +0100 Subject: [PATCH 02/10] chore: add both methods to the release workflow: pass gh-token , or use gh-app --- .github/workflows/release-typescript-project.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release-typescript-project.yml b/.github/workflows/release-typescript-project.yml index 1acf77f..b9f8f0e 100644 --- a/.github/workflows/release-typescript-project.yml +++ b/.github/workflows/release-typescript-project.yml @@ -19,9 +19,9 @@ on: GH_RELEASE_TOKEN: required: false APP_ID: - required: true + required: false APP_PRIVATE_KEY: - required: true + required: false NPM_AUTH_TOKEN: required: false @@ -84,7 +84,9 @@ jobs: run: ${{ inputs.runAfterInstall }} if: ${{ inputs.runAfterInstall != '' }} - - uses: actions/create-github-app-token@v1 + - name: 'Get token for the GitHub App' + if: ${{ secrets.APP_ID != '' }} + uses: actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c id: app-token with: app-id: ${{ secrets.APP_ID }} @@ -97,7 +99,7 @@ jobs: @semantic-release/exec@6.0.3 conventional-changelog-conventionalcommits@5.0.0 env: - GITHUB_TOKEN: ${{ steps.app-token.outputs.token }} + GITHUB_TOKEN: ${{ secrets.APP_ID != '' && steps.app-token.outputs.token || secrets.GH_RELEASE_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} HUSKY: 0 From ddb61178ef7dbbd5e81b24fd1a7929ecce5c4bd8 Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 17:27:10 +0100 Subject: [PATCH 03/10] chore: make appId input instead of secret --- .github/workflows/release-typescript-project.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-typescript-project.yml b/.github/workflows/release-typescript-project.yml index b9f8f0e..ee3c36c 100644 --- a/.github/workflows/release-typescript-project.yml +++ b/.github/workflows/release-typescript-project.yml @@ -15,11 +15,13 @@ on: type: boolean required: false description: Flag that we need `dist` folder to start release process + appId: + type: string + required: false + description: GitHub app id for release process secrets: GH_RELEASE_TOKEN: required: false - APP_ID: - required: false APP_PRIVATE_KEY: required: false NPM_AUTH_TOKEN: @@ -85,11 +87,11 @@ jobs: if: ${{ inputs.runAfterInstall != '' }} - name: 'Get token for the GitHub App' - if: ${{ secrets.APP_ID != '' }} + if: ${{ inputs.appId != '' }} uses: actions/create-github-app-token@f2acddfb5195534d487896a656232b016a682f3c id: app-token with: - app-id: ${{ secrets.APP_ID }} + app-id: ${{ inputs.appId }} private-key: ${{ secrets.APP_PRIVATE_KEY }} - name: 'Semantic Release' @@ -99,7 +101,7 @@ jobs: @semantic-release/exec@6.0.3 conventional-changelog-conventionalcommits@5.0.0 env: - GITHUB_TOKEN: ${{ secrets.APP_ID != '' && steps.app-token.outputs.token || secrets.GH_RELEASE_TOKEN }} + GITHUB_TOKEN: ${{ inputs.appId != '' && steps.app-token.outputs.token || secrets.GH_RELEASE_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} HUSKY: 0 From 3e8f58c8e2b2b511bd2cfe5239bb6ab2d389572b Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 18:57:38 +0100 Subject: [PATCH 04/10] chore: add using app for releases to server-sdk-release shared workflow, update docs --- .github/workflows/release-server-sdk.yml | 7 +++ .../workflows/release-typescript-project.yml | 9 ++-- README.md | 44 +++++++++++-------- 3 files changed, 38 insertions(+), 22 deletions(-) diff --git a/.github/workflows/release-server-sdk.yml b/.github/workflows/release-server-sdk.yml index a3edf7a..40296b1 100644 --- a/.github/workflows/release-server-sdk.yml +++ b/.github/workflows/release-server-sdk.yml @@ -23,10 +23,17 @@ on: description: 'Additional plugins to install for the semantic-release action.' required: false type: string + appId: + type: string + required: false + description: 'GitHub app id for release process.' secrets: GH_RELEASE_TOKEN: description: 'GitHub token with permissions to create releases and perform other necessary operations.' required: true + APP_PRIVATE_KEY: + description: 'GitHub App token to request GitHub token.' + required: false PYPI_TOKEN: description: 'PyPI token used for publishing Python packages. Required only for Python projects.' required: false diff --git a/.github/workflows/release-typescript-project.yml b/.github/workflows/release-typescript-project.yml index ee3c36c..579e4e5 100644 --- a/.github/workflows/release-typescript-project.yml +++ b/.github/workflows/release-typescript-project.yml @@ -10,21 +10,24 @@ on: runAfterInstall: type: string required: false - description: Commands to run after installing dependencies. + description: 'Commands to run after installing dependencies' distFolderNeedForRelease: type: boolean required: false - description: Flag that we need `dist` folder to start release process + description: 'Flag that we need `dist` folder to start release process' appId: type: string required: false - description: GitHub app id for release process + description: 'GitHub app id for release process' secrets: GH_RELEASE_TOKEN: + description: 'GitHub token with permissions to create releases and perform other necessary operations' required: false APP_PRIVATE_KEY: + description: 'GitHub App token to request GitHub token' required: false NPM_AUTH_TOKEN: + description: 'NPM authentication token for publishing packages' required: false jobs: diff --git a/README.md b/README.md index df7d4c6..140f6f8 100644 --- a/README.md +++ b/README.md @@ -248,10 +248,11 @@ a semantic release. The workflow expects the following secrets to be provided: -| Secret Name | Description | -|--------------------|--------------------------------------------------| -| `GH_RELEASE_TOKEN` | GitHub token for creating releases | -| `NPM_AUTH_TOKEN` | NPM authentication token for publishing packages | +| Secret Name | Description | +|--------------------|------------------------------------------------------------------| +| `GH_RELEASE_TOKEN` | GitHub token for creating releases | +| `APP_PRIVATE_KEY` | GitHub App private key for creating GitHub token for the release | +| `NPM_AUTH_TOKEN` | NPM authentication token for publishing packages | #### Inputs @@ -260,6 +261,7 @@ The workflow expects the following secrets to be provided: | `runAfterInstall` | No | String | `""` | Commands to run after installing dependencies. | | `distFolderNeedForRelease` | No | Boolean | `false` | Flag that we need `dist` folder to start release process. | | `nodeVersion` | No | String | `lts/*` | Node version to use | +| `appId` | No | String | `""` | GitHub App Id for creating GitHub token for the release | #### Usage @@ -273,8 +275,10 @@ on: jobs: release-workflow: uses: fingerprintjs/dx-team-toolkit/.github/workflows/release-typescript-project.yml@v1 + with: + appId: ${{ vars.APP_ID }} secrets: - GH_RELEASE_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} + APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} ``` @@ -301,23 +305,24 @@ determine the next version number and generate release notes based on commit mes The workflow accepts the following input parameters: -| Input Parameter | Required | Type | Default | Description | -|----------------------------------|----------|--------|---------|----------------------------------------------------------------------------------------------------------------| -| `language` | Yes | String | - | Programming language for the project. Supported are `java`, `dotnet`, `python`, `golang`, `flutter` and `php`. | -| `language-version` | Yes | String | - | Version of the programming language to set up. | -| `prepare-command` | No | String | - | Command(s) to run for project preparation, such as installing dependencies. | -| `java-version` | No | String | `11` | Version of Java to set up. | -| `semantic-release-extra-plugins` | No | String | - | Additional plugins to install for the semantic-release action. | - +| Input Parameter | Required | Type | Default | Description | +|----------------------------------|----------|---------|------|----------------------------------------------------------------------------------------------------------------| +| `language` | Yes | String | - | Programming language for the project. Supported are `java`, `dotnet`, `python`, `golang`, `flutter` and `php`. | +| `language-version` | Yes | String | - | Version of the programming language to set up. | +| `prepare-command` | No | String | - | Command(s) to run for project preparation, such as installing dependencies. | +| `java-version` | No | String | `11` | Version of Java to set up. | +| `semantic-release-extra-plugins` | No | String | - | Additional plugins to install for the semantic-release action. | +| `appId` | No | String | - | GitHub App Id for creating GitHub token for the release | #### Workflow Secrets The workflow expects the following secrets to be provided: -| Secret Name | Description | Required For | -|--------------------|-------------------------------------------------------------|-----------------| -| `GH_RELEASE_TOKEN` | GitHub token used for making releases and other operations. | All projects | -| `PYPI_TOKEN` | PyPI token used for publishing Python packages. | Python projects | -| `NUGET_API_KEY` | NuGet API key for publishing .NET packages. | DotNET projects | +| Secret Name | Description | Required For | +|--------------------|------------------------------------------------------------------|-----------------| +| `APP_PRIVATE_KEY` | GitHub App private key for creating GitHub token for the release | All projects | +| `GH_RELEASE_TOKEN` | GitHub token used for making releases and other operations. | All projects | +| `PYPI_TOKEN` | PyPI token used for publishing Python packages. | Python projects | +| `NUGET_API_KEY` | NuGet API key for publishing .NET packages. | DotNET projects | #### Example of usage: @@ -333,6 +338,7 @@ jobs: name: 'Publish new version' uses: fingerprintjs/dx-team-toolkit/.github/workflows/release-server-sdk.yml@v1 with: + appId: ${{ vars.APP_ID }} language: python language-version: '3.9' prepare-command: | @@ -341,7 +347,7 @@ jobs: pip install wheel pip install twine secrets: - GH_RELEASE_TOKEN: ${{ secrets.GH_RELEASE_TOKEN }} + APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }} PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} ``` From 1bb5bac16fa8a6e57e6b599fbd32a7884fef24bc Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 18:59:58 +0100 Subject: [PATCH 05/10] chore: update `pnpm/action-setup` to use `node20` --- .github/workflows/analyze-commits.yml | 2 +- .github/workflows/build-typescript-project.yml | 2 +- .github/workflows/coverage-diff.yml | 2 +- .github/workflows/docs-and-coverage.yml | 2 +- .github/workflows/release-dx-packages.yml | 2 +- .github/workflows/release-typescript-project.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/analyze-commits.yml b/.github/workflows/analyze-commits.yml index 2407b59..0b0735f 100644 --- a/.github/workflows/analyze-commits.yml +++ b/.github/workflows/analyze-commits.yml @@ -38,7 +38,7 @@ jobs: fi - if: ${{ env.PACKAGE_MANAGER == 'pnpm' }} name: 'Install pnpm' - uses: pnpm/action-setup@ebcfd6995dade4b0104ac774445cef8b3b4635b0 + uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 with: version: 8 - name: 'Install latest node version' diff --git a/.github/workflows/build-typescript-project.yml b/.github/workflows/build-typescript-project.yml index 8b7b3c4..2df9495 100644 --- a/.github/workflows/build-typescript-project.yml +++ b/.github/workflows/build-typescript-project.yml @@ -52,7 +52,7 @@ jobs: - if: ${{ env.PACKAGE_MANAGER == 'pnpm' }} name: 'Install pnpm' - uses: pnpm/action-setup@ebcfd6995dade4b0104ac774445cef8b3b4635b0 + uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 with: version: 8 diff --git a/.github/workflows/coverage-diff.yml b/.github/workflows/coverage-diff.yml index ab21f0a..e36fe21 100644 --- a/.github/workflows/coverage-diff.yml +++ b/.github/workflows/coverage-diff.yml @@ -37,7 +37,7 @@ jobs: - if: ${{ env.PACKAGE_MANAGER == 'pnpm' }} name: 'Install pnpm' - uses: pnpm/action-setup@ebcfd6995dade4b0104ac774445cef8b3b4635b0 + uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 with: version: 8 diff --git a/.github/workflows/docs-and-coverage.yml b/.github/workflows/docs-and-coverage.yml index aaca4fa..fd2b13d 100644 --- a/.github/workflows/docs-and-coverage.yml +++ b/.github/workflows/docs-and-coverage.yml @@ -45,7 +45,7 @@ jobs: - if: ${{ env.PACKAGE_MANAGER == 'pnpm' }} name: 'Install pnpm' - uses: pnpm/action-setup@ebcfd6995dade4b0104ac774445cef8b3b4635b0 + uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 with: version: 8 diff --git a/.github/workflows/release-dx-packages.yml b/.github/workflows/release-dx-packages.yml index b1b8659..8f30713 100644 --- a/.github/workflows/release-dx-packages.yml +++ b/.github/workflows/release-dx-packages.yml @@ -17,7 +17,7 @@ jobs: uses: actions/checkout@v4 - name: Install pnpm - uses: pnpm/action-setup@ebcfd6995dade4b0104ac774445cef8b3b4635b0 + uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 with: version: 8 diff --git a/.github/workflows/release-typescript-project.yml b/.github/workflows/release-typescript-project.yml index 579e4e5..4c28822 100644 --- a/.github/workflows/release-typescript-project.yml +++ b/.github/workflows/release-typescript-project.yml @@ -63,7 +63,7 @@ jobs: - if: ${{ env.PACKAGE_MANAGER == 'pnpm' }} name: 'Install pnpm' - uses: pnpm/action-setup@ebcfd6995dade4b0104ac774445cef8b3b4635b0 + uses: pnpm/action-setup@129abb77bf5884e578fcaf1f37628e41622cc371 with: version: 8 From 70cd81e7c43c10ce580fc25c503735008058df7e Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 19:07:20 +0100 Subject: [PATCH 06/10] chore: update `cycjimmy/semantic-release-action` to use `node20` --- .github/workflows/release-server-sdk.yml | 2 +- .github/workflows/release-typescript-project.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-server-sdk.yml b/.github/workflows/release-server-sdk.yml index 40296b1..16eb709 100644 --- a/.github/workflows/release-server-sdk.yml +++ b/.github/workflows/release-server-sdk.yml @@ -96,7 +96,7 @@ jobs: run: ${{ inputs.prepare-command }} - name: 'Semantic Release' - uses: cycjimmy/semantic-release-action@91ab76a4a393a8d0c4739e9aea1818b56bc953ea + uses: cycjimmy/semantic-release-action@61680d0e9b02ff86f5648ade99e01be17f0260a4 with: extra_plugins: | @semantic-release/exec@6.0.3 diff --git a/.github/workflows/release-typescript-project.yml b/.github/workflows/release-typescript-project.yml index 4c28822..a2cdc8e 100644 --- a/.github/workflows/release-typescript-project.yml +++ b/.github/workflows/release-typescript-project.yml @@ -98,7 +98,7 @@ jobs: private-key: ${{ secrets.APP_PRIVATE_KEY }} - name: 'Semantic Release' - uses: cycjimmy/semantic-release-action@91ab76a4a393a8d0c4739e9aea1818b56bc953ea + uses: cycjimmy/semantic-release-action@61680d0e9b02ff86f5648ade99e01be17f0260a4 with: extra_plugins: | @semantic-release/exec@6.0.3 From 3585f6b9bd584137fb92801aa1c62278115ad15e Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 19:11:48 +0100 Subject: [PATCH 07/10] chore: update `marocchino/sticky-pull-request-comment` to use `node20` --- .github/workflows/analyze-commits.yml | 8 ++++---- .github/workflows/coverage-diff.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/analyze-commits.yml b/.github/workflows/analyze-commits.yml index 0b0735f..79b327b 100644 --- a/.github/workflows/analyze-commits.yml +++ b/.github/workflows/analyze-commits.yml @@ -61,7 +61,7 @@ jobs: echo "EOF" >> $GITHUB_OUTPUT shell: bash - if: ${{ failure() && steps.commitlint.outcome == 'failure' }} - uses: marocchino/sticky-pull-request-comment@3d60a5b2dae89d44e0c6ddc69dd7536aec2071cd + uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 with: header: Commitlint recreate: true @@ -81,7 +81,7 @@ jobs: ### Commitlint Errors ${{ steps.commitlint_formatted_results.outputs.formatted }} - if: ${{ success() }} - uses: marocchino/sticky-pull-request-comment@3d60a5b2dae89d44e0c6ddc69dd7536aec2071cd + uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 with: header: Commitlint hide: true @@ -104,7 +104,7 @@ jobs: uses: fingerprintjs/action-semantic-release-info@v1 - if: ${{ steps.semantic_release_info.outputs.no_release == 'false' }} name: Add comment to the PR - uses: marocchino/sticky-pull-request-comment@3d60a5b2dae89d44e0c6ddc69dd7536aec2071cd + uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 with: header: ReleasePreview recreate: true @@ -114,7 +114,7 @@ jobs: ${{steps.semantic_release_info.outputs.notes}} - if: ${{ steps.semantic_release_info.outputs.no_release == 'true' }} name: Add comment to the PR - uses: marocchino/sticky-pull-request-comment@3d60a5b2dae89d44e0c6ddc69dd7536aec2071cd + uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 with: header: ReleasePreview recreate: true diff --git a/.github/workflows/coverage-diff.yml b/.github/workflows/coverage-diff.yml index e36fe21..79cd37c 100644 --- a/.github/workflows/coverage-diff.yml +++ b/.github/workflows/coverage-diff.yml @@ -73,7 +73,7 @@ jobs: test-script: ${{ inputs.testScript }} - name: Add comment with coverage report - uses: marocchino/sticky-pull-request-comment@adca94abcaf73c10466a71cc83ae561fd66d1a56 + uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 with: message: | ${{ steps.coverage.outputs.report }} From e38a0a00f8c45d12971b23976ec777fd288670e3 Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 19:16:08 +0100 Subject: [PATCH 08/10] chore: update `ArtiomTr/jest-coverage-report-action` --- .github/workflows/coverage-diff.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/coverage-diff.yml b/.github/workflows/coverage-diff.yml index 79cd37c..bb599a5 100644 --- a/.github/workflows/coverage-diff.yml +++ b/.github/workflows/coverage-diff.yml @@ -66,7 +66,7 @@ jobs: - name: Jest coverage comment id: coverage - uses: ArtiomTr/jest-coverage-report-action@df2b025553c31d68f84be6337843e277e2576844 + uses: ArtiomTr/jest-coverage-report-action@c026e98ae079f4b0b027252c8e957f5ebd420610 with: package-manager: ${{ env.PACKAGE_MANAGER }} output: report-markdown From 8911c20d7a59864f1e33d36f1d46edaaac6ce577 Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 19:19:53 +0100 Subject: [PATCH 09/10] chore: update `jaywcjlove/coverage-badges-cli` to use `node20` --- .github/workflows/docs-and-coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-and-coverage.yml b/.github/workflows/docs-and-coverage.yml index fd2b13d..3a062dc 100644 --- a/.github/workflows/docs-and-coverage.yml +++ b/.github/workflows/docs-and-coverage.yml @@ -73,7 +73,7 @@ jobs: run: $PACKAGE_MANAGER test:coverage - name: Create Coverage Badges - uses: jaywcjlove/coverage-badges-cli@e07f25709cd25486855c1ba1b26da53576ff3620 + uses: jaywcjlove/coverage-badges-cli@df58615045079f1c827de7867044bbab3ec22b43 with: source: coverage/coverage-summary.json output: coverage/lcov-report/badges.svg From 9582d8741467a4c04acbe9d69c164d43b11e8131 Mon Sep 17 00:00:00 2001 From: Ilya Taratukhin Date: Mon, 11 Mar 2024 19:22:29 +0100 Subject: [PATCH 10/10] chore: update `JamesIves/github-pages-deploy-action` to use `node20` --- .github/workflows/docs-and-coverage.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs-and-coverage.yml b/.github/workflows/docs-and-coverage.yml index 3a062dc..1200718 100644 --- a/.github/workflows/docs-and-coverage.yml +++ b/.github/workflows/docs-and-coverage.yml @@ -84,7 +84,7 @@ jobs: ${{ inputs.prepare-gh-pages-commands }} - name: Deploy 🚀 - uses: JamesIves/github-pages-deploy-action@8817a56e5bfec6e2b08345c81f4d422db53a2cdc + uses: JamesIves/github-pages-deploy-action@65b5dfd4f5bcd3a7403bbc2959c144256167464e with: branch: gh-pages folder: gh-pages