From f594aed9a099aa18642e9db16dd9ed45aa7bf6c8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Sep 2023 04:32:53 +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/tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 2fe3df0..69fcbd7 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -13,11 +13,11 @@ jobs: name: Run lint and tests steps: - name: Checkout main, so we have it to refer to - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: main - name: Checkout PR branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install test depenencies run: sudo apt-get install -y shellcheck podman && pip3 install black - name: Add black to path