diff --git a/.github/workflows/build-and-publish-pre-release.yml b/.github/workflows/build-and-publish-pre-release.yml
index e3c08291..629984eb 100644
--- a/.github/workflows/build-and-publish-pre-release.yml
+++ b/.github/workflows/build-and-publish-pre-release.yml
@@ -98,7 +98,7 @@ jobs:
           CREATE_RELEASE: false
 
       - name: "Build Version"
-        uses: actions/github-script@v7.0.0
+        uses: actions/github-script@v7.0.1
         with:
           script: |
             core.info('Version: \u001b[38;5;6m${{env.BUILD_VERSION}}');
diff --git a/.github/workflows/build-and-publish-release.yml b/.github/workflows/build-and-publish-release.yml
index 50d78d5d..68759534 100644
--- a/.github/workflows/build-and-publish-release.yml
+++ b/.github/workflows/build-and-publish-release.yml
@@ -87,7 +87,7 @@ jobs:
           CREATE_RELEASE: true
 
       - name: "Build Version"
-        uses: actions/github-script@v7.0.0
+        uses: actions/github-script@v7.0.1
         with:
           script: |
             core.info('Version: \u001b[38;5;6m${{env.BUILD_VERSION}}');
diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml
index 6664b35a..90dfdb3f 100644
--- a/.github/workflows/pr-lint.yml
+++ b/.github/workflows/pr-lint.yml
@@ -66,7 +66,7 @@ jobs:
         shell: bash
         run: echo "CHANGES=$(git diff --exit-code --no-patch --merge-base origin/main CHANGELOG.md 2> /dev/null && echo 0 || echo $?)" >> "$GITHUB_ENV"
       - if: (github.actor != 'dependabot[bot]' && !endsWith(github.repository , '-template')) && env.CHANGES == '0'
-        uses: actions/github-script@v7.0.0
+        uses: actions/github-script@v7.0.1
         with:
           script: |
             core.setFailed('Changelog has not changed')