From c0907e6fb41440da7493100351944a9a845dc271 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Oct 2022 00:31:57 +0000 Subject: [PATCH] fix(deps): 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/pipeline-deployment.yml | 2 +- .github/workflows/pipeline-development.yml | 14 +++++++------- .github/workflows/pipeline-issue.yml | 4 ++-- .github/workflows/pipeline-publish.yml | 2 +- .github/workflows/pipeline-pullrequest.yml | 8 ++++---- .github/workflows/pipeline-release.yml | 2 +- 6 files changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/workflows/pipeline-deployment.yml b/.github/workflows/pipeline-deployment.yml index b9899d3..9665979 100644 --- a/.github/workflows/pipeline-deployment.yml +++ b/.github/workflows/pipeline-deployment.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: GitGuardian Scanner diff --git a/.github/workflows/pipeline-development.yml b/.github/workflows/pipeline-development.yml index db1f1d5..63783a2 100644 --- a/.github/workflows/pipeline-development.yml +++ b/.github/workflows/pipeline-development.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: GitGuardian Scanner @@ -37,7 +37,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: ref: ${{ github.head_ref }} fetch-depth: 0 @@ -50,7 +50,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name : Setup NodeJS @@ -79,7 +79,7 @@ jobs: needs: [ linter ] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: # Make sure the actual branch is checked out when running on pull requests ref: ${{ github.head_ref }} @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: install node v14.16 @@ -120,7 +120,7 @@ jobs: needs: [ linter, prettier, typescript ] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: Setup CodeQL @@ -138,7 +138,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: Setup Dprint diff --git a/.github/workflows/pipeline-issue.yml b/.github/workflows/pipeline-issue.yml index 15ebc82..d1bc724 100644 --- a/.github/workflows/pipeline-issue.yml +++ b/.github/workflows/pipeline-issue.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: GitGuardian Scanner @@ -40,7 +40,7 @@ jobs: env: GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 if: steps.check.outputs.triggered == 'true' with: fetch-depth: 0 diff --git a/.github/workflows/pipeline-publish.yml b/.github/workflows/pipeline-publish.yml index fb98659..0eb5c23 100644 --- a/.github/workflows/pipeline-publish.yml +++ b/.github/workflows/pipeline-publish.yml @@ -10,7 +10,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 #TODO: Create NPM Publish # Setup .npmrc file to publish to GitHub Packages - uses: actions/setup-node@v2 diff --git a/.github/workflows/pipeline-pullrequest.yml b/.github/workflows/pipeline-pullrequest.yml index 4a5590d..5b69544 100644 --- a/.github/workflows/pipeline-pullrequest.yml +++ b/.github/workflows/pipeline-pullrequest.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: GitGuardian Scanner @@ -31,7 +31,7 @@ jobs: needs: [ gitguardian ] steps: - name: Checkout Code - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: PR Optimizer @@ -107,7 +107,7 @@ jobs: name: 'Pull Request Thank You' steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: 'Pull Request Thank You' @@ -134,7 +134,7 @@ jobs: needs: [ gitguardian ] steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3.1.0 with: fetch-depth: 0 - name: Emojify PR Title diff --git a/.github/workflows/pipeline-release.yml b/.github/workflows/pipeline-release.yml index 5ed73aa..9703b00 100644 --- a/.github/workflows/pipeline-release.yml +++ b/.github/workflows/pipeline-release.yml @@ -11,7 +11,7 @@ jobs: contents: read packages: write steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3.1.0 # Setup .npmrc file to publish to npm - uses: actions/setup-node@v2 with: