diff --git a/.github/workflows/build-and-publish-pre-release.yml b/.github/workflows/build-and-publish-pre-release.yml index 945336cf..97f8e74d 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 4bca5a68..10614e45 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 0b5c14d9..59050255 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')