diff --git a/.github/workflows/set-pr-labels.yaml b/.github/workflows/set-pr-labels.yaml index 0ba8249cd9..c78163b6b7 100644 --- a/.github/workflows/set-pr-labels.yaml +++ b/.github/workflows/set-pr-labels.yaml @@ -16,17 +16,17 @@ jobs: PR_NUMBER: ${{ github.event.number }} SCRIPT_PATH: './github-actions/trigger-pr/set-pr-labels.js' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: parse-pr-body name: 'Parse the pull request body for all linked issues' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | const { listIssuesFromPRBody } = require('${{ env.SCRIPT_PATH }}'); return listIssuesFromPRBody({ context, core }); - id: compile-labels name: 'Compile labels from linked issues' - uses: actions/github-script@v5 + uses: actions/github-script@v6 with: script: | const { listLabelsFromIssues } = require('${{ env.SCRIPT_PATH }}');