From 543a7bd06797d9df7867b0bdc8ae7a309aa83fe1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 21 Nov 2025 01:02:12 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [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/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/check-latest.yml | 2 +- .github/workflows/image.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/check-latest.yml b/.github/workflows/check-latest.yml index 026e286..235af5d 100644 --- a/.github/workflows/check-latest.yml +++ b/.github/workflows/check-latest.yml @@ -12,7 +12,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: token: ${{ secrets.GH_PAT }} # Required due to: https://github.community/t/github-action-not-triggering-gh-pages-upon-push/16096 diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index ec79f24..2119f00 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -12,14 +12,14 @@ jobs: steps: - name: Checkout Dockerfile - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Set version based on tag run: | echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV - name: Checkout Joplin Server - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: repository: laurent22/joplin ref: server-${{ env.RELEASE_VERSION }}