From 87e21f7fef5e4ecb5379d08066050f92458481c5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Apr 2022 18:16:14 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.0.2. - [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/v2...v3.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/lint.yml | 4 ++-- .github/workflows/super-linter.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index a7c6a177..578db421 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ jobs: name: Check Spelling Misspell All Files In Commit runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.0.2 - name: Install run: wget -O - -q https://git.io/misspell | sh -s -- -b . - name: Misspell @@ -16,7 +16,7 @@ jobs: name: Run pre-commit # https://pre-commit.com/ runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.0.2 - uses: actions/setup-python@v2 # https://www.python.org/ with: python-version: "3.x" # Version range or exact version of a Python version to use, using SemVer's version range syntax diff --git a/.github/workflows/super-linter.yml b/.github/workflows/super-linter.yml index 830da842..054e7546 100644 --- a/.github/workflows/super-linter.yml +++ b/.github/workflows/super-linter.yml @@ -7,7 +7,7 @@ jobs: name: GitHub Super-Linter runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.0.2 - uses: github/super-linter@v4.6.0 env: ERROR_ON_MISSING_EXEC_BIT: true