From 4a76a5de745330186c08bdaa083be2c7d88b626a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 04:07:40 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 2 to 3 Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/auto-label.yaml | 2 +- .github/workflows/develop-verify-merge.yaml | 2 +- .github/workflows/landmine.yaml | 2 +- .github/workflows/main-on-merge.yaml | 6 +++--- .github/workflows/main-verify-merge.yaml | 2 +- .github/workflows/manage-labels.yaml | 2 +- .github/workflows/patch-cut.yml | 2 +- .github/workflows/release-cut.yaml | 2 +- .github/workflows/release-on-merge.yaml | 4 ++-- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/auto-label.yaml b/.github/workflows/auto-label.yaml index 7d91193..81ca0a8 100644 --- a/.github/workflows/auto-label.yaml +++ b/.github/workflows/auto-label.yaml @@ -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 if: github.event.action == 'synchronize' - name: Get Commit Message diff --git a/.github/workflows/develop-verify-merge.yaml b/.github/workflows/develop-verify-merge.yaml index 0cc40d1..0273405 100644 --- a/.github/workflows/develop-verify-merge.yaml +++ b/.github/workflows/develop-verify-merge.yaml @@ -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 with: submodules: 'recursive' diff --git a/.github/workflows/landmine.yaml b/.github/workflows/landmine.yaml index 6a163cc..f1a7b75 100644 --- a/.github/workflows/landmine.yaml +++ b/.github/workflows/landmine.yaml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: 'recursive' diff --git a/.github/workflows/main-on-merge.yaml b/.github/workflows/main-on-merge.yaml index f82e71f..869b57a 100644 --- a/.github/workflows/main-on-merge.yaml +++ b/.github/workflows/main-on-merge.yaml @@ -15,7 +15,7 @@ jobs: wiki-sync: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Collect READMEs for Wiki run: ./scripts/workflows/collect-wiki.sh @@ -43,7 +43,7 @@ jobs: patch: ${{ steps.version.outputs.patch }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} @@ -86,7 +86,7 @@ jobs: needs: create-release-tag steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} diff --git a/.github/workflows/main-verify-merge.yaml b/.github/workflows/main-verify-merge.yaml index 826e855..9b0c29c 100644 --- a/.github/workflows/main-verify-merge.yaml +++ b/.github/workflows/main-verify-merge.yaml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: 'recursive' diff --git a/.github/workflows/manage-labels.yaml b/.github/workflows/manage-labels.yaml index 0a2c4b6..314bb55 100644 --- a/.github/workflows/manage-labels.yaml +++ b/.github/workflows/manage-labels.yaml @@ -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 # Runs a label manager from https://github.com/marketplace/actions/github-labeler - name: Run Labeler diff --git a/.github/workflows/patch-cut.yml b/.github/workflows/patch-cut.yml index 730c14b..044bcaa 100644 --- a/.github/workflows/patch-cut.yml +++ b/.github/workflows/patch-cut.yml @@ -13,7 +13,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} diff --git a/.github/workflows/release-cut.yaml b/.github/workflows/release-cut.yaml index b0cdd51..7cf1c97 100644 --- a/.github/workflows/release-cut.yaml +++ b/.github/workflows/release-cut.yaml @@ -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 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} diff --git a/.github/workflows/release-on-merge.yaml b/.github/workflows/release-on-merge.yaml index 0a5b637..5d8d809 100644 --- a/.github/workflows/release-on-merge.yaml +++ b/.github/workflows/release-on-merge.yaml @@ -27,7 +27,7 @@ jobs: main-commit: ${{ steps.check_release.outputs.main-commit }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} @@ -80,7 +80,7 @@ jobs: needs: create-release-tag steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }}