From 6edf91c7129277be9eb14d6ff65b729ccced79b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 08:15:01 +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/gettext.yml | 2 +- .github/workflows/main.yml | 4 ++-- .github/workflows/release.yml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gettext.yml b/.github/workflows/gettext.yml index 8850e5ed..a359d72e 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -8,7 +8,7 @@ jobs: steps: - name: Clone repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 with: token: ${{ secrets.GIT_USER_TOKEN }} diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6ad7b319..cfdf2c95 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -19,7 +19,7 @@ jobs: image: ghcr.io/elementary/docker:${{ matrix.version }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Install Dependencies run: | apt update @@ -40,6 +40,6 @@ jobs: image: valalang/lint steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Lint run: io.elementary.vala-lint -d . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ebbe16a8..7942f5c1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: elementary/actions/release@main env: GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"