From de2e61bae07464c56916dc6f5375e9c12f385861 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Oct 2023 13:59:55 +0000 Subject: [PATCH 1/2] Bump actions/setup-node from 3.8.2 to 4.0.0 Bumps [actions/setup-node](https://github.com/actions/setup-node) from 3.8.2 to 4.0.0. - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v3.8.2...v4.0.0) --- updated-dependencies: - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/automation-trigger-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/automation-trigger-test.yml b/.github/workflows/automation-trigger-test.yml index d9cd2343a..248f4d3ac 100644 --- a/.github/workflows/automation-trigger-test.yml +++ b/.github/workflows/automation-trigger-test.yml @@ -80,7 +80,7 @@ jobs: distribution: 'temurin' cache: maven - name: Setup Node.js environment - uses: actions/setup-node@v3.8.2 + uses: actions/setup-node@v4.0.0 - name: Build with Maven id: build_maven run: | From ff28e00c7a54ff00f05e9ac5e527b85c740d7573 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 13:31:28 +0000 Subject: [PATCH 2/2] Bump actions/github-script from 6 to 7 Bumps [actions/github-script](https://github.com/actions/github-script) from 6 to 7. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6...v7) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/dependabot-merger.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dependabot-merger.yml b/.github/workflows/dependabot-merger.yml index 64a7b307c..43c5d836c 100644 --- a/.github/workflows/dependabot-merger.yml +++ b/.github/workflows/dependabot-merger.yml @@ -37,7 +37,7 @@ jobs: echo "oncall_slack_id=$slack_id" >> $GITHUB_OUTPUT - name: Create PR - uses: actions/github-script@v6 + uses: actions/github-script@v7 id: create-pr with: script: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29a3fa190..a4d38b879 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -164,7 +164,7 @@ jobs: echo "Current version is $(cat fastlane/.version)." echo "version=$(cat fastlane/.version)" >> $GITHUB_OUTPUT - name: Create GitHub Release - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const createRelease = require('./.github/custom-scripts/create-release'); @@ -178,7 +178,7 @@ jobs: version: tagName, }); - name: Upload Release Assets - uses: actions/github-script@v6 + uses: actions/github-script@v7 with: script: | const uploadAsset = require('./.github/custom-scripts/upload-asset');