diff --git a/.github/workflows/auto-deployments.yml b/.github/workflows/auto-deployments.yml index 04a62748f..c24691804 100644 --- a/.github/workflows/auto-deployments.yml +++ b/.github/workflows/auto-deployments.yml @@ -26,7 +26,7 @@ jobs: - name: Get dir names id: get-dir-names - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const folders = JSON.parse("${{ steps.changed-files.outputs.all_changed_files }}"); @@ -77,7 +77,7 @@ jobs: - name: Get SPA NAME as strings id: get-spa-name if: contains(matrix.container, '-spa') - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const spaName = "${{ matrix.container }}".split('/')[1]; diff --git a/.github/workflows/manual-deployment.yml b/.github/workflows/manual-deployment.yml index ae663de6c..fc6eba0b6 100644 --- a/.github/workflows/manual-deployment.yml +++ b/.github/workflows/manual-deployment.yml @@ -60,7 +60,7 @@ jobs: - name: Get SPA NAME as strings id: get-lighthouse-branch-name - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: core.setOutput('LIGHTHOUSE_BRANCH_NAME', "$SPA_NAME".toUpperCase()) diff --git a/.github/workflows/test-and-build.yml b/.github/workflows/test-and-build.yml index 962d60373..bc4ae010b 100644 --- a/.github/workflows/test-and-build.yml +++ b/.github/workflows/test-and-build.yml @@ -26,7 +26,7 @@ jobs: - name: Get dir names id: get-dir-names - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const folders = JSON.parse("${{ steps.changed-files.outputs.all_changed_files }}");