This is an automated email from the ASF dual-hosted git repository.

apupier pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new fc969859d4f2 chore(deps): Bump actions/github-script from 7 to 9
fc969859d4f2 is described below

commit fc969859d4f21c4c3f29130f0f58a61109f55836
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Fri Apr 10 07:08:07 2026 +0000

    chore(deps): Bump actions/github-script from 7 to 9
    
    Bumps [actions/github-script](https://github.com/actions/github-script) 
from 7 to 9.
    - [Release notes](https://github.com/actions/github-script/releases)
    - [Commits](https://github.com/actions/github-script/compare/v7...v9)
    
    ---
    updated-dependencies:
    - dependency-name: actions/github-script
      dependency-version: '9'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
---
 .github/workflows/pr-commenter.yml      | 6 +++---
 .github/workflows/pr-labeler.yml        | 4 ++--
 .github/workflows/pr-test-commenter.yml | 4 ++--
 .github/workflows/sonar-scan.yml        | 6 +++---
 4 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/pr-commenter.yml 
b/.github/workflows/pr-commenter.yml
index 6f1cd620e73f..08001312c383 100644
--- a/.github/workflows/pr-commenter.yml
+++ b/.github/workflows/pr-commenter.yml
@@ -32,7 +32,7 @@ jobs:
       github.event.workflow_run.conclusion == 'success'
     steps:
       - name: 'Download coverage artifact'
-        uses: actions/github-script@v8
+        uses: actions/github-script@v9
         with:
           script: |
             var artifacts = await 
github.rest.actions.listWorkflowRunArtifacts({
@@ -55,7 +55,7 @@ jobs:
 
       - name: 'Extract PR id'
         id: pr
-        uses: actions/github-script@v8
+        uses: actions/github-script@v9
         with:
           github-token: ${{ secrets.GITHUB_TOKEN }}
           script: |
@@ -64,7 +64,7 @@ jobs:
             core.setOutput('id', issue_number)
 
       - name: 'Comment on PR'
-        uses: actions/github-script@v8
+        uses: actions/github-script@v9
         with:
           github-token: ${{ secrets.GITHUB_TOKEN }}
           script: |
diff --git a/.github/workflows/pr-labeler.yml b/.github/workflows/pr-labeler.yml
index 338f69a5bb31..bfa163bd6bd6 100644
--- a/.github/workflows/pr-labeler.yml
+++ b/.github/workflows/pr-labeler.yml
@@ -32,7 +32,7 @@ jobs:
       github.event.workflow_run.conclusion == 'success'
     steps:
       - name: 'Download coverage artifact'
-        uses: actions/github-script@v8
+        uses: actions/github-script@v9
         with:
           script: |
             var artifacts = await 
github.rest.actions.listWorkflowRunArtifacts({
@@ -55,7 +55,7 @@ jobs:
 
       - name: 'Extract PR id'
         id: pr
-        uses: actions/github-script@v8
+        uses: actions/github-script@v9
         with:
           github-token: ${{ secrets.GITHUB_TOKEN }}
           script: |
diff --git a/.github/workflows/pr-test-commenter.yml 
b/.github/workflows/pr-test-commenter.yml
index 3462f12b3ebe..60dc485d08fd 100644
--- a/.github/workflows/pr-test-commenter.yml
+++ b/.github/workflows/pr-test-commenter.yml
@@ -38,7 +38,7 @@ jobs:
       actions: read
     steps:
       - name: Download CI comment artifact
-        uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 
v8
+        uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # 
v9.0.0
         with:
           script: |
             const artifacts = await 
github.rest.actions.listWorkflowRunArtifacts({
@@ -66,7 +66,7 @@ jobs:
           fi
       - name: Post or update PR comment
         if: always()
-        uses: actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # 
v8
+        uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # 
v9.0.0
         with:
           github-token: ${{ secrets.GITHUB_TOKEN }}
           script: |
diff --git a/.github/workflows/sonar-scan.yml b/.github/workflows/sonar-scan.yml
index 742190bad9a2..1c2fdc309fb5 100644
--- a/.github/workflows/sonar-scan.yml
+++ b/.github/workflows/sonar-scan.yml
@@ -57,7 +57,7 @@ jobs:
           echo "target_artifact_id=$(sed '5q;d' pr-event.txt)" >> "$GITHUB_ENV"
 
       - name: Create PR check
-        uses: actions/github-script@v7
+        uses: actions/github-script@v9
         id: check
         with:
           script: |
@@ -104,7 +104,7 @@ jobs:
 
       - name: Delete compiled classes artifact
         if: always()
-        uses: actions/github-script@v7
+        uses: actions/github-script@v9
         with:
           script: |
             await github.rest.actions.deleteArtifact({
@@ -154,7 +154,7 @@ jobs:
           SONAR_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
 
       - name: Update PR check status
-        uses: actions/github-script@v7
+        uses: actions/github-script@v9
         if: always()
         env:
           CHECK_ID: ${{ steps.check.outputs.result }}

Reply via email to