From 5ab5f178db16153a1b648973177ab81714c75922 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 11:38:56 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [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...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' 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..8688b59 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@v5 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..99777c4 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@v5 - 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@v5 with: repository: laurent22/joplin ref: server-${{ env.RELEASE_VERSION }}