From 4942688fa914c7ca12329260a54d2703a8c2e295 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Oct 2022 18:15:22 +0000 Subject: [PATCH] Bump actions/checkout from 2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.1.0. - [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.1.0) --- 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..1de61f1d 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.1.0 - 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.1.0 - 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..0c401ce4 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.1.0 - uses: github/super-linter@v4.6.0 env: ERROR_ON_MISSING_EXEC_BIT: true