From 0b483500a352f5e4f43282ea6cf331d800ef9c37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 04:50:12 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/gettext.yml | 2 +- .github/workflows/githubci.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 7800ff90..3f5087d5 100644 --- a/.github/workflows/gettext.yml +++ b/.github/workflows/gettext.yml @@ -17,7 +17,7 @@ jobs: apt-get install git -y - name: Clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: token: ${{ secrets.GIT_USER_TOKEN }} diff --git a/.github/workflows/githubci.yml b/.github/workflows/githubci.yml index 308da44e..721fb94c 100644 --- a/.github/workflows/githubci.yml +++ b/.github/workflows/githubci.yml @@ -20,7 +20,7 @@ jobs: image: ghcr.io/elementary/docker:${{ matrix.version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Dependencies run: | apt update @@ -45,6 +45,6 @@ jobs: image: valalang/lint steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Lint run: io.elementary.vala-lint -d . diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ec5c0fab..48fdd6fa 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@v3 + - uses: actions/checkout@v4 - uses: elementary/actions/release@master env: GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"