From dad2d5244582c4584e2b71e6d943e11c2cf093f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 24 May 2026 10:03:30 +0000 Subject: [PATCH 1/2] ci: bump googleapis/release-please-action from 4 to 5 Bumps [googleapis/release-please-action](https://github.com/googleapis/release-please-action) from 4 to 5. - [Release notes](https://github.com/googleapis/release-please-action/releases) - [Changelog](https://github.com/googleapis/release-please-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/release-please-action/compare/v4...v5) --- updated-dependencies: - dependency-name: googleapis/release-please-action dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/release_please.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release_please.yml b/.github/workflows/release_please.yml index ca534586..32cae128 100644 --- a/.github/workflows/release_please.yml +++ b/.github/workflows/release_please.yml @@ -13,7 +13,7 @@ jobs: release-please: runs-on: ubuntu-latest steps: - - uses: googleapis/release-please-action@v4 + - uses: googleapis/release-please-action@v5 with: # this assumes that you have created a personal access token # (PAT) and configured it as a GitHub action secret named From a5ae30a41e7d78895c84bbeb256ee71940ceb0fa Mon Sep 17 00:00:00 2001 From: ronenk1 Date: Sun, 24 May 2026 13:17:43 +0300 Subject: [PATCH 2/2] fix: correct variable syntax for GITHUB_SHA in upload script --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index a5be95e8..27f827c6 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -58,7 +58,7 @@ jobs: - uses: azure/CLI@v2 with: inlineScript: | - az storage blob upload --name schemas-$GITHUB_SHA.tgz --account-name ghatmpstorage --container-name=npm-packages --file map-colonies-schemas-${{steps.json_properties.outputs.version}}.tgz --sas-token "${{ secrets.SAS_TOKEN }}" + az storage blob upload --name schemas-${{ github.sha }}.tgz --account-name ghatmpstorage --container-name=npm-packages --file map-colonies-schemas-${{steps.json_properties.outputs.version}}.tgz --sas-token "${{ secrets.SAS_TOKEN }}" - name: Comment on PR uses: thollander/actions-comment-pull-request@v3 with: