diff --git a/.github/workflows/project-auto-done.yml b/.github/workflows/project-auto-done.yml index 53e437e..d173e85 100644 --- a/.github/workflows/project-auto-done.yml +++ b/.github/workflows/project-auto-done.yml @@ -17,7 +17,7 @@ jobs: (github.event_name == 'pull_request' && github.event.pull_request.merged == true) steps: - name: Move project item to Done - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} script: | diff --git a/.github/workflows/sync-project-fields.yml b/.github/workflows/sync-project-fields.yml index 12ff9ab..5c12022 100644 --- a/.github/workflows/sync-project-fields.yml +++ b/.github/workflows/sync-project-fields.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Sync fields - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} script: | diff --git a/.github/workflows/weekly-triage-report.yml b/.github/workflows/weekly-triage-report.yml index 84e489c..52bbed3 100644 --- a/.github/workflows/weekly-triage-report.yml +++ b/.github/workflows/weekly-triage-report.yml @@ -15,7 +15,7 @@ jobs: steps: - name: Build weekly summary id: summary - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -59,7 +59,7 @@ jobs: core.setOutput('body', body); - name: Publish report issue - uses: actions/github-script@v8 + uses: actions/github-script@v9 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |