From bc599a990ea863d7cd134cf5a67744607b33c99e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Jul 2026 16:37:48 +0000 Subject: [PATCH] Bump the update-dependencies group with 4 updates Bumps the update-dependencies group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache), [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) and [docker/build-push-action](https://github.com/docker/build-push-action). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v6...v7) Updates `actions/cache` from 5 to 6.1.0 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v5...v6.1.0) Updates `docker/setup-qemu-action` from 4 to 4.1.0 - [Release notes](https://github.com/docker/setup-qemu-action/releases) - [Commits](https://github.com/docker/setup-qemu-action/compare/v4...v4.1.0) Updates `docker/build-push-action` from 7 to 7.2.0 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](https://github.com/docker/build-push-action/compare/v7...v7.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: update-dependencies - dependency-name: actions/cache dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: update-dependencies - dependency-name: docker/setup-qemu-action dependency-version: 4.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: update-dependencies - dependency-name: docker/build-push-action dependency-version: 7.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: update-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/check_pr.yml | 12 ++++++------ .github/workflows/deploy_docs.yml | 4 ++-- .github/workflows/release.yml | 20 ++++++++++---------- .github/workflows/release_next.yml | 20 ++++++++++---------- 4 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/check_pr.yml b/.github/workflows/check_pr.yml index 93b06ce5e85..2441594cdf7 100644 --- a/.github/workflows/check_pr.yml +++ b/.github/workflows/check_pr.yml @@ -15,7 +15,7 @@ jobs: node: [*node_version] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node }} uses: actions/setup-node@v6 with: @@ -23,7 +23,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -89,7 +89,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -100,7 +100,7 @@ jobs: - name: Cache .eslintcache if: matrix.nodeRun == matrix.nodeBuild id: eslintcache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | .eslintcache @@ -131,7 +131,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1 fetch-depth: 0 @@ -141,7 +141,7 @@ jobs: - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/docs/node_modules diff --git a/.github/workflows/deploy_docs.yml b/.github/workflows/deploy_docs.yml index 2e18d3807ca..2535cecf094 100644 --- a/.github/workflows/deploy_docs.yml +++ b/.github/workflows/deploy_docs.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1 fetch-depth: 0 @@ -19,7 +19,7 @@ jobs: - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/docs/node_modules diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c95e82b092e..e337049278e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js ${{ env.NODE_VERSION }} uses: actions/setup-node@v6 with: @@ -24,7 +24,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -59,7 +59,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -69,7 +69,7 @@ jobs: run: npm ci - name: Cache .eslintcache id: eslintcache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | .eslintcache @@ -91,14 +91,14 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-node@v6 with: node-version: ${{ env.NODE_VERSION }} - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/docs/node_modules @@ -133,7 +133,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -162,7 +162,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} registry-url: 'https://registry.npmjs.org' - name: Set up QEMU - uses: docker/setup-qemu-action@v4 + uses: docker/setup-qemu-action@v4.1.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 - name: Login to DockerHub @@ -177,14 +177,14 @@ jobs: - name: Wait for npm publish run: node scripts/wait-npm-publish.js latest ${{ steps.package_version.outputs.version }} - name: Build and push ${{ steps.package_version.outputs.version }} - uses: docker/build-push-action@v7 + uses: docker/build-push-action@v7.2.0 with: push: true tags: m365pnp/cli-microsoft365:${{ steps.package_version.outputs.version }} build-args: | CLI_VERSION=${{ steps.package_version.outputs.version }} - name: Build and push latest - uses: docker/build-push-action@v7 + uses: docker/build-push-action@v7.2.0 with: push: true tags: m365pnp/cli-microsoft365:latest diff --git a/.github/workflows/release_next.yml b/.github/workflows/release_next.yml index ea71a6d89e8..f440b1f6a45 100644 --- a/.github/workflows/release_next.yml +++ b/.github/workflows/release_next.yml @@ -16,7 +16,7 @@ jobs: node: [*node_version] steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node }} uses: actions/setup-node@v6 with: @@ -24,7 +24,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -90,7 +90,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -101,7 +101,7 @@ jobs: - name: Cache .eslintcache if: matrix.nodeRun == matrix.nodeBuild id: eslintcache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | .eslintcache @@ -132,7 +132,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: # Number of commits to fetch. 0 indicates all history for all branches and tags. Default: 1 fetch-depth: 0 @@ -142,7 +142,7 @@ jobs: - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/docs/node_modules @@ -185,7 +185,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - name: Cache node modules id: cache - uses: actions/cache@v5 + uses: actions/cache@v6.1.0 with: path: | **/node_modules @@ -241,7 +241,7 @@ jobs: node-version: ${{ env.NODE_VERSION }} registry-url: 'https://registry.npmjs.org' - name: Set up QEMU - uses: docker/setup-qemu-action@v4 + uses: docker/setup-qemu-action@v4.1.0 - name: Set up Docker Buildx uses: docker/setup-buildx-action@v4 - name: Login to DockerHub @@ -256,14 +256,14 @@ jobs: - name: Wait for npm publish run: node scripts/wait-npm-publish.js next ${{ steps.package_version.outputs.version }} - name: Build and push ${{ steps.package_version.outputs.version }} - uses: docker/build-push-action@v7 + uses: docker/build-push-action@v7.2.0 with: push: true tags: m365pnp/cli-microsoft365:${{ steps.package_version.outputs.version }} build-args: | CLI_VERSION=${{ steps.package_version.outputs.version }} - name: Build and push next - uses: docker/build-push-action@v7 + uses: docker/build-push-action@v7.2.0 with: push: true tags: m365pnp/cli-microsoft365:next