From ce10332ac2f0ffc68ff39e0f826d9c7b5172f284 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 15:11:56 +0900 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#255) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .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 ad127a69..29f61ba1 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/main.yml b/.github/workflows/main.yml index bb5e1bf6..846da22c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -21,7 +21,7 @@ jobs: image: ghcr.io/elementary/docker:${{ matrix.version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Dependencies run: | apt update @@ -41,6 +41,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 3d93be02..504e2b79 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 }}"