From 6881f033c2654cedcb96677d5e379efb886136b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 15:52:36 +0000 Subject: [PATCH] Bump actions/checkout from 5 to 7 Bumps [actions/checkout](https://github.com/actions/checkout) from 5 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/v5...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build_release.yml | 2 +- .github/workflows/ci-js.yml | 2 +- .github/workflows/ci.yml | 12 ++++++------ 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 6fe1b35..db523f8 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: ${{ env.APP_NAME }} - name: Install NPM packages diff --git a/.github/workflows/ci-js.yml b/.github/workflows/ci-js.yml index ec5991e..0a19c79 100644 --- a/.github/workflows/ci-js.yml +++ b/.github/workflows/ci-js.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: ${{ env.APP_NAME }} - name: Install NPM packages diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b744f4a..600541f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Checkout server - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: nextcloud/server ref: ${{ matrix.server-versions }} @@ -40,7 +40,7 @@ jobs: git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - name: Checkout app - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: apps/${{ env.APP_NAME }} @@ -94,7 +94,7 @@ jobs: steps: - name: Checkout server - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: nextcloud/server ref: ${{ matrix.server-versions }} @@ -107,7 +107,7 @@ jobs: git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - name: Checkout app - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: apps/${{ env.APP_NAME }} @@ -163,7 +163,7 @@ jobs: steps: - name: Checkout server - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: repository: nextcloud/server ref: ${{ matrix.server-versions }} @@ -176,7 +176,7 @@ jobs: git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive --depth=1 - name: Checkout app - uses: actions/checkout@v5 + uses: actions/checkout@v7 with: path: apps/${{ env.APP_NAME }}