From 1b6ab863f4263d91317102b77255fc365d85e500 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 09:16:35 +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/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c9767b3..e6cf4fcd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: steps: # Check out (a.k.a. clones) the AquariWM repository. - name: Checkout AquariWM - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Install `libsystemd-dev`, `libudev-dev`, `libseat-dev`, `libinput-dev`, and # `libxkbcommon-dev` to satisfy dependencies. @@ -109,7 +109,7 @@ jobs: steps: # Check out (a.k.a. clones) the AquariWM repository. - name: Checkout AquariWM - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.fix-n-format.outputs.commit-id }} @@ -151,7 +151,7 @@ jobs: # Check out (a.k.a. clones) the AquariWM repository with fixes made by `clippy` # in `clippy-fixes`, if any. - name: Checkout AquariWM - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.fix-n-format.outputs.commit-id }} @@ -195,7 +195,7 @@ jobs: # Check out (a.k.a. clones) the AquariWM repository with fixes made by `clippy` in # `clippy-fixes`, if any, and formatting made by `rustfmt` in `auto-format`, if any. - name: Checkout AquariWM - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ needs.fix-n-format.outputs.commit-id }} path: aquariwm @@ -209,7 +209,7 @@ jobs: # Check out a template to put the generated docs in. - name: Checkout AquariWM docs template - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: AquariWM/aquariwm-docs-template path: template