diff --git a/.github/workflows/auto-label.yaml b/.github/workflows/auto-label.yaml index 849070f..254277e 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.2 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..4725e93 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.2 - name: Prevent POC/WIP branches run: | diff --git a/.github/workflows/main-on-merge.yaml b/.github/workflows/main-on-merge.yaml index 182dfc0..125a3fb 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.2 - 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.2 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.2 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..ada4b74 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.2 - 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..ebf7462 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.2 # 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..b04d2e9 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.2 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..dfe14f1 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.2 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..7cb675b 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.2 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.2 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }}