From f055125b4ab01a9dfd2b861447b50432aaea26a5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Mar 2022 10:03:46 -0800 Subject: [PATCH] chore(deps): bump actions/checkout from 2.4.0 to 3 (#478) * chore(deps): bump actions/checkout from 2.4.0 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [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.4.0...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * ci: debugging * ci: removing the token line for good Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon Ursenbach --- .github/workflows/ci.yml | 7 +++---- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/docs.yml | 2 +- .github/workflows/gh-action-simple.yml | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3af58c2c5..5bcd7f4d4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,7 +11,7 @@ jobs: node-version: [14.x, 16.x] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 @@ -29,16 +29,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout GitHub Action - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: path: rdme-repo - name: Checkout external repo containing OpenAPI file - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: path: oas-examples-repo repository: readmeio/oas-examples - token: ${{ secrets.OAS_EXAMPLES_READ }} - name: Run `validate` command uses: ./rdme-repo/ diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index a46506a69..9f14ffb05 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -24,7 +24,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 - name: Initialize CodeQL uses: github/codeql-action/init@v1 diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 85d27a8f0..9fb455efd 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout this repo - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 # Let's dynamically update our docs with the latest version of rdme! # Note that these next two steps are not required diff --git a/.github/workflows/gh-action-simple.yml b/.github/workflows/gh-action-simple.yml index 714040d7c..ae25074b9 100644 --- a/.github/workflows/gh-action-simple.yml +++ b/.github/workflows/gh-action-simple.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout GitHub Action - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 # This is a simple example that runs our `validate` command on a local file. - name: Run `validate` command