Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

fix(deps): bump actions/checkout from 2 to 3.1.0 #156

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/pipeline-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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 }}
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pipeline-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pipeline-pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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'
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down