Skip to content

build(deps): bump actions/checkout from 2 to 3.1.0 #46

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: develop
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/auto-label.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
## Actions to run when commit added to PR
# - Check if commit message has 'wip' and label if so

- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
if: github.event.action == 'synchronize'

- name: Get Commit Message
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/develop-verify-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/landmine.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
submodules: 'recursive'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main-on-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
wiki-sync:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0

- name: Collect READMEs for Wiki
run: ./scripts/workflows/collect-wiki.sh
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
patch: ${{ steps.version.outputs.patch }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop
token: ${{ secrets.PAT }}
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
needs: create-release-tag

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop
token: ${{ secrets.PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main-verify-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manage-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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@v2
- uses: actions/checkout@v3.1.0

# Runs a label manager from https://github.com/marketplace/actions/github-labeler
- name: Run Labeler
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/patch-cut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop
token: ${{ secrets.PAT }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-cut.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

# TODO: Should we create step that sets "variables" for action (main branch, release commit user)
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop
token: ${{ secrets.PAT }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-on-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
main-commit: ${{ steps.check_release.outputs.main-commit }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop
token: ${{ secrets.PAT }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
needs: create-release-tag

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.1.0
with:
## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop
token: ${{ secrets.PAT }}
Expand Down