From 2d3b94848ce83cc97741b9d18ca314568fc5a38c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A1draic=20Slattery?= Date: Fri, 23 Jan 2026 20:04:11 +0100 Subject: [PATCH] chore: Update outdated GitHub Actions versions (#34850) - PR title: update(actions): update GitHub Action versions - PR description: This PR updates outdated GitHub Action versions. --------- Co-authored-by: Mason Daugherty Co-authored-by: Mason Daugherty --- .github/workflows/tag-external-contributions.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tag-external-contributions.yml b/.github/workflows/tag-external-contributions.yml index 3dd625e121c..a015404481a 100644 --- a/.github/workflows/tag-external-contributions.yml +++ b/.github/workflows/tag-external-contributions.yml @@ -39,7 +39,7 @@ jobs: - name: Check if contributor is external id: check-membership - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ steps.app-token.outputs.token }} script: | @@ -77,7 +77,7 @@ jobs: - name: Add external label to issue if: steps.check-membership.outputs.is-external == 'true' && github.event_name == 'issues' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -95,7 +95,7 @@ jobs: - name: Add external label to pull request if: steps.check-membership.outputs.is-external == 'true' && github.event_name == 'pull_request_target' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -113,7 +113,7 @@ jobs: - name: Add internal label to issue if: steps.check-membership.outputs.is-external == 'false' && github.event_name == 'issues' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: | @@ -131,7 +131,7 @@ jobs: - name: Add internal label to pull request if: steps.check-membership.outputs.is-external == 'false' && github.event_name == 'pull_request_target' - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: github-token: ${{ secrets.GITHUB_TOKEN }} script: |