diff --git a/.github/workflows/branch-cicd.yaml b/.github/workflows/branch-cicd.yaml index b4f9297..4c85aa0 100644 --- a/.github/workflows/branch-cicd.yaml +++ b/.github/workflows/branch-cicd.yaml @@ -37,14 +37,14 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: true fetch-depth: 0 token: ${{secrets.ADMIN_GITHUB_TOKEN}} - name: 💵 Maven Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository # The "key" used to indicate a set of cached files is the operating system runner diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1712a10..c84b6c9 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/stable-cicd.yaml b/.github/workflows/stable-cicd.yaml index 9decae7..ac0394f 100644 --- a/.github/workflows/stable-cicd.yaml +++ b/.github/workflows/stable-cicd.yaml @@ -35,6 +35,7 @@ on: push: tags: - 'release/*' +concurrency: roundup # What to Do @@ -49,14 +50,14 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: true token: ${{secrets.ADMIN_GITHUB_TOKEN}} fetch-depth: 0 - name: 💵 Maven Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository # The "key" used to indicate a set of cached files is the operating system runner diff --git a/.github/workflows/unstable-cicd.yaml b/.github/workflows/unstable-cicd.yaml index 79726f1..4919670 100644 --- a/.github/workflows/unstable-cicd.yaml +++ b/.github/workflows/unstable-cicd.yaml @@ -33,6 +33,7 @@ on: push: branches: - main +concurrency: roundup # What to Do @@ -48,14 +49,14 @@ jobs: steps: - name: 💳 Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: lfs: true fetch-depth: 0 token: ${{secrets.ADMIN_GITHUB_TOKEN}} - name: 💵 Maven Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.m2/repository # The "key" used to indicate a set of cached files is the operating system runner