From 32014a8ebba5d91c0b08e942d85aed635456447d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 05:10:29 +0000 Subject: [PATCH] chore(deps): Bump actions/checkout from 4.1.7 to 4.2.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.1. - [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.1.7...v4.2.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... 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 9c3686a..573bbd3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: name: Python runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.1 - name: Install Poetry Action uses: snok/install-poetry@v1.3.4 - name: Set up Python 3.10 @@ -45,7 +45,7 @@ jobs: name: Run tests in Glue container runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.1 - name: Pull official glue image run: docker pull amazon/aws-glue-libs:glue_libs_4.0.0_image_01 - name: Build container @@ -56,14 +56,14 @@ jobs: name: Shell runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.1 - name: Check shell scripts using shellcheck uses: ludeeus/action-shellcheck@2.0.0 dockerfile: name: Dockerfile runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.1 - name: Validate Dockerfile using hadolint uses: hadolint/hadolint-action@v3.1.0 with: @@ -72,6 +72,6 @@ jobs: name: Makefile runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.7 + - uses: actions/checkout@v4.2.1 - name: Check Makefile using checkmake uses: Uno-Takashi/checkmake-action@v2