diff --git a/.github/workflows/auto-label.yaml b/.github/workflows/auto-label.yaml index 7d91193..7da1fd0 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.1.0 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..e566ce7 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.1.0 with: submodules: 'recursive' diff --git a/.github/workflows/landmine.yaml b/.github/workflows/landmine.yaml index 6a163cc..edb8bf9 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.1.0 with: submodules: 'recursive' diff --git a/.github/workflows/main-on-merge.yaml b/.github/workflows/main-on-merge.yaml index f82e71f..cbfdcf4 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.1.0 - 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.1.0 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.1.0 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..718ad9a 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.1.0 with: submodules: 'recursive' diff --git a/.github/workflows/manage-labels.yaml b/.github/workflows/manage-labels.yaml index 0a2c4b6..836310d 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.1.0 # 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..ddb4c04 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.1.0 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..eb6ec8d 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.1.0 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..04a2fa9 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.1.0 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.1.0 with: ## This is a Personal Access Token from Admin User that allows us to bypass branch protections on develop token: ${{ secrets.PAT }}