From 129bfa583e42aa0ff28a2c86614182c275361f83 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 03:30:35 +0000 Subject: [PATCH] [Dependencies]: Bump actions/github-script from 7.0.0 to 7.0.1 Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-publish-pre-release.yml | 2 +- .github/workflows/build-and-publish-release.yml | 2 +- .github/workflows/pr-lint.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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')