From 4bf69bde1181656c76876c800801ce74b7ba8cad Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 04:54:42 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 3.1.0 to 4.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 4.0.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/v3.1.0...v4.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/link-check.yml | 2 +- .github/workflows/lint.yml | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b216ea6710c6b..7fe4d9fab5bff 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -21,7 +21,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.0.0 with: submodules: recursive diff --git a/.github/workflows/link-check.yml b/.github/workflows/link-check.yml index 5ec1eebc65e53..6577468acf9a1 100644 --- a/.github/workflows/link-check.yml +++ b/.github/workflows/link-check.yml @@ -23,7 +23,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.0.0 - uses: actions/setup-node@v3 with: node-version: "16" diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e9ea75775031e..2c7237fb56ecb 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,7 +7,7 @@ jobs: name: 🍇 Markdown runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.0.0 - name: 🚀 Use Node.js uses: actions/setup-node@v3 with: @@ -18,7 +18,7 @@ jobs: name: 🍏 YAML runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.0.0 - uses: actions/setup-python@v4.1.0 with: python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax