From f9e59a98316beafc6dd496df2b4646bdd8f15e8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 15 Apr 2022 14:04:51 +0000 Subject: [PATCH] build(deps): bump actions/checkout from 2.3.4 to 3.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.4 to 3.0.1. - [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.3.4...v3.0.1) --- 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/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 ++-- 8 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/auto-label.yaml b/.github/workflows/auto-label.yaml index 849070f..7d5d556 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.3.4 + - uses: actions/checkout@v3.0.1 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 7a24eb1..668ee67 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.3.4 + - uses: actions/checkout@v3.0.1 - name: Prevent POC/WIP branches run: | diff --git a/.github/workflows/main-on-merge.yaml b/.github/workflows/main-on-merge.yaml index 182dfc0..d90eed8 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.3.4 + - uses: actions/checkout@v3.0.1 - name: Collect READMEs for Wiki run: ./scripts/workflows/collect-wiki.sh @@ -44,7 +44,7 @@ jobs: found: ${{ steps.check_exists.outputs.found }} steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.0.1 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} @@ -96,7 +96,7 @@ jobs: needs: create-release-tag steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.0.1 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 38acdf5..1742c9d 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.3.4 + - uses: actions/checkout@v3.0.1 - name: "Verify 'main' PR are from 'release-*' or 'patch-*' branch" run: ./scripts/workflows/branch-match.sh diff --git a/.github/workflows/manage-labels.yaml b/.github/workflows/manage-labels.yaml index 76710ef..3f749a0 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.3.4 + - uses: actions/checkout@v3.0.1 # 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 ee52827..e357c34 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.3.4 + - uses: actions/checkout@v3.0.1 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 bd85ff3..f6f9409 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.3.4 + - uses: actions/checkout@v3.0.1 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 59ec151..8f82a89 100644 --- a/.github/workflows/release-on-merge.yaml +++ b/.github/workflows/release-on-merge.yaml @@ -25,7 +25,7 @@ jobs: main-commit: ${{ steps.check_release.outputs.main-commit }} steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.0.1 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }} @@ -82,7 +82,7 @@ jobs: needs: create-release-tag steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v3.0.1 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }}