diff --git a/.github/workflows/build_dbimport.yml b/.github/workflows/build_dbimport.yml index 7f8a1696b..34b8f4988 100644 --- a/.github/workflows/build_dbimport.yml +++ b/.github/workflows/build_dbimport.yml @@ -23,7 +23,7 @@ jobs: COMPILER: ${{ matrix.compiler }} if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache uses: actions/cache@v3 env: diff --git a/.github/workflows/check_pending_sql.yml b/.github/workflows/check_pending_sql.yml index df0dca4f0..f75913bb0 100644 --- a/.github/workflows/check_pending_sql.yml +++ b/.github/workflows/check_pending_sql.yml @@ -6,6 +6,6 @@ jobs: check-pending-sql: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Check pending SQL run: source ./apps/ci/ci-pending.sh diff --git a/.github/workflows/codestyle.yml b/.github/workflows/codestyle.yml index 3dd61eb44..910cd6e49 100644 --- a/.github/workflows/codestyle.yml +++ b/.github/workflows/codestyle.yml @@ -11,6 +11,6 @@ jobs: runs-on: ${{ matrix.os }} name: check codestyle steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Check core codestyle run: source ./apps/ci/ci-codestyle.sh diff --git a/.github/workflows/core_build.yml b/.github/workflows/core_build.yml index 53135ab89..b068a80ba 100644 --- a/.github/workflows/core_build.yml +++ b/.github/workflows/core_build.yml @@ -23,9 +23,9 @@ jobs: COMPILER: ${{ matrix.compiler }} if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: var/ccache key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ github.ref }}:${{ github.sha }} diff --git a/.github/workflows/core_matrix_build.yml b/.github/workflows/core_matrix_build.yml index e0f6e40ac..9dc0595af 100644 --- a/.github/workflows/core_matrix_build.yml +++ b/.github/workflows/core_matrix_build.yml @@ -40,9 +40,9 @@ jobs: || github.event.label.name == 'run-build') ) steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: var/ccache key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ github.ref }}:${{ github.sha }} diff --git a/.github/workflows/core_modules_build.yml b/.github/workflows/core_modules_build.yml index 6f50e7306..0997b0b53 100644 --- a/.github/workflows/core_modules_build.yml +++ b/.github/workflows/core_modules_build.yml @@ -34,12 +34,12 @@ jobs: || github.event.label.name == 'run-build') ) steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Checkout modules run: ./apps/ci/ci-install-modules.sh if: matrix.modules == 'with' - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: var/ccache key: ccache:${{ matrix.os }}:${{ matrix.compiler }}:${{ matrix.modules }}-modules:${{ github.ref }}:${{ github.sha }} diff --git a/.github/workflows/cpp-check.yml b/.github/workflows/cpp-check.yml index d5c95a313..b29cb4816 100644 --- a/.github/workflows/cpp-check.yml +++ b/.github/workflows/cpp-check.yml @@ -20,7 +20,7 @@ jobs: runs-on: ubuntu-22.04 name: cpp check steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: cpp check run: | sudo apt update -y diff --git a/.github/workflows/docker_build.yml b/.github/workflows/docker_build.yml index 238102b70..70e658685 100644 --- a/.github/workflows/docker_build.yml +++ b/.github/workflows/docker_build.yml @@ -124,7 +124,7 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: var/docker/ccache key: ccache:${{ matrix.os }}:clang:without-modules:${{ github.ref }}:${{ github.sha }} diff --git a/.github/workflows/import_pending.yml b/.github/workflows/import_pending.yml index c9a7ffaaf..80f3d7c5e 100644 --- a/.github/workflows/import_pending.yml +++ b/.github/workflows/import_pending.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-20.04 if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: persist-credentials: false - name: Extract branch name diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 984fe9132..63ac5f983 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -25,9 +25,9 @@ jobs: && !github.event.pull_request.draft && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/Library/Caches/ccache key: ccache:${{ matrix.os }}:${{ github.ref }}:${{ github.sha }} diff --git a/.github/workflows/tools_build.yml b/.github/workflows/tools_build.yml index 242dea748..944e2a38e 100644 --- a/.github/workflows/tools_build.yml +++ b/.github/workflows/tools_build.yml @@ -23,7 +23,7 @@ jobs: COMPILER: ${{ matrix.compiler }} if: github.repository == 'azerothcore/azerothcore-wotlk' && !github.event.pull_request.draft steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Cache uses: actions/cache@v3 env: diff --git a/.github/workflows/windows_build.yml b/.github/workflows/windows_build.yml index 957ede3d9..22f09f5c3 100644 --- a/.github/workflows/windows_build.yml +++ b/.github/workflows/windows_build.yml @@ -25,7 +25,7 @@ jobs: && !github.event.pull_request.draft && (github.ref == 'refs/heads/master' || contains(github.event.pull_request.labels.*.name, 'run-build') || github.event.label.name == 'run-build') steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: ccache uses: hendrikmuhs/ccache-action@v1.2.9 - name: Configure OS