diff --git a/.github/workflows/cron_update_base_translation.yml b/.github/workflows/cron_update_base_translation.yml index 15706c166ea0b..8965b490aac17 100644 --- a/.github/workflows/cron_update_base_translation.yml +++ b/.github/workflows/cron_update_base_translation.yml @@ -11,13 +11,13 @@ jobs: name: "Update Base Translation" runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Update Base Translation run: ./.github/workflows/scripts/common/update_base_translation.sh - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: title: "Qt: Update Base Translation" commit-message: "[ci skip] Qt: Update Base Translation." diff --git a/.github/workflows/cron_update_controller_db.yml b/.github/workflows/cron_update_controller_db.yml index 70b9a08cee791..525f888135037 100644 --- a/.github/workflows/cron_update_controller_db.yml +++ b/.github/workflows/cron_update_controller_db.yml @@ -9,7 +9,7 @@ jobs: if: github.repository == 'PCSX2/pcsx2' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Get Latest DB and Prepare DB File run: | @@ -19,7 +19,7 @@ jobs: mv ./game_controller_db.txt ${{github.workspace}}/bin/resources/game_controller_db.txt - name: Create Pull Request - uses: peter-evans/create-pull-request@v7 + uses: peter-evans/create-pull-request@v8 with: title: "PAD: Update to latest controller database" commit-message: "PAD: Update to latest controller database." diff --git a/.github/workflows/lint_gamedb.yml b/.github/workflows/lint_gamedb.yml index 673421c45acdb..8b179935c0656 100644 --- a/.github/workflows/lint_gamedb.yml +++ b/.github/workflows/lint_gamedb.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Install Packages run: | diff --git a/.github/workflows/linux_build_flatpak.yml b/.github/workflows/linux_build_flatpak.yml index 50b1062db9b4b..a14b2cacf6c53 100644 --- a/.github/workflows/linux_build_flatpak.yml +++ b/.github/workflows/linux_build_flatpak.yml @@ -51,7 +51,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: set-safe-directory: ${{ env.GITHUB_WORKSPACE }} @@ -156,7 +156,7 @@ jobs: mv "./${{ steps.artifact-metadata.outputs.artifact-name }}.flatpak" "$GITHUB_WORKSPACE"/ci-artifacts/ - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ steps.artifact-metadata.outputs.artifact-name }} path: ci-artifacts diff --git a/.github/workflows/linux_build_qt.yml b/.github/workflows/linux_build_qt.yml index 80ae3d52e5fd9..10dd28e468aa1 100644 --- a/.github/workflows/linux_build_qt.yml +++ b/.github/workflows/linux_build_qt.yml @@ -59,7 +59,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 @@ -92,7 +92,7 @@ jobs: run: echo "timestamp=$(date -u "+%Y-%m-%d-%H;%M;%S")" >> $GITHUB_OUTPUT - name: ccache cache files - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .ccache key: ${{ inputs.os }} ${{ inputs.platform }} ${{ inputs.compiler }} ${{ inputs.detail }} ccache ${{ steps.ccache_cache_timestamp.outputs.timestamp }} @@ -114,7 +114,7 @@ jobs: - name: Cache Dependencies id: cache-deps - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/deps key: ${{ inputs.os }} ${{ inputs.platform }} deps ${{ hashFiles('.github/workflows/scripts/linux/build-dependencies-qt.sh', '.github/workflows/scripts/common/*.patch') }} @@ -171,7 +171,7 @@ jobs: - name: Upload artifact if: inputs.buildAppImage == true - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ steps.artifact-metadata.outputs.artifact-name }} path: ci-artifacts diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 59811d477a4ff..3e40053adbc52 100644 --- a/.github/workflows/macos_build.yml +++ b/.github/workflows/macos_build.yml @@ -42,7 +42,7 @@ jobs: steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # actions/checkout elides tags, fetch them primarily for releases - name: Fetch Tags @@ -82,7 +82,7 @@ jobs: - name: Cache Dependencies id: cache-deps - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ~/deps key: ${{ inputs.os }} deps ${{ hashFiles('.github/workflows/scripts/macos/build-dependencies.sh', '.github/workflows/scripts/common/*.patch') }} @@ -103,7 +103,7 @@ jobs: run: echo "timestamp=$(date -u "+%Y-%m-%d-%H;%M;%S")" >> $GITHUB_OUTPUT - name: Cache ccache cache - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: .ccache key: ${{ inputs.os }} ccache ${{ steps.ccache_cache_timestamp.outputs.timestamp }} @@ -156,7 +156,7 @@ jobs: cp "${{ steps.artifact-metadata.outputs.artifact-name }}.tar.xz" ci-artifacts/macOS.tar.xz - name: Upload Artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ steps.artifact-metadata.outputs.artifact-name }} path: "*.tar.xz" diff --git a/.github/workflows/release_cut_new.yml b/.github/workflows/release_cut_new.yml index d43e600a856a7..ff5c8c2543c77 100644 --- a/.github/workflows/release_cut_new.yml +++ b/.github/workflows/release_cut_new.yml @@ -35,7 +35,7 @@ jobs: outputs: new_tag: ${{ steps.tag_version.outputs.new_tag }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # Docs - https://github.com/mathieudutour/github-tag-action - name: Bump Version and Push Tag @@ -162,12 +162,12 @@ jobs: name: "Upload Artifacts" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Prepare Artifact Folder run: mkdir ./ci-artifacts/ - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v7 name: Download all Artifacts with: path: ./ci-artifacts/ @@ -202,7 +202,7 @@ jobs: echo "TAG_VAL=${TAG_VAL}" gh release edit ${TAG_VAL} --draft=false --repo PCSX2/pcsx2 - - uses: actions/setup-node@v4 + - uses: actions/setup-node@v6 with: node-version: 16 diff --git a/.github/workflows/triage_pr.yml b/.github/workflows/triage_pr.yml index 62a93ec4bcba4..e24a214c54193 100644 --- a/.github/workflows/triage_pr.yml +++ b/.github/workflows/triage_pr.yml @@ -8,7 +8,7 @@ jobs: if: github.repository == 'PCSX2/pcsx2' runs-on: ubuntu-latest steps: - - uses: actions/labeler@v5 + - uses: actions/labeler@v6 with: repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/windows_build_matrix.yml b/.github/workflows/windows_build_matrix.yml index eb82582891cd6..6cb586aea91bd 100644 --- a/.github/workflows/windows_build_matrix.yml +++ b/.github/workflows/windows_build_matrix.yml @@ -16,7 +16,7 @@ jobs: runs-on: windows-2019 steps: - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Verify VS Project Files run: .github\workflows\scripts\windows\validate-vs-filters.ps1 diff --git a/.github/workflows/windows_build_qt.yml b/.github/workflows/windows_build_qt.yml index 4f54294c11c32..85479fb2851ac 100644 --- a/.github/workflows/windows_build_qt.yml +++ b/.github/workflows/windows_build_qt.yml @@ -60,7 +60,7 @@ jobs: run: choco uninstall llvm - name: Checkout Repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 # actions/checkout elides tags, fetch them primarily for releases - name: Fetch Tags @@ -97,7 +97,7 @@ jobs: - name: Cache Dependencies id: cache-deps - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: deps key: ${{ inputs.os }} ${{ inputs.platform }} deps ${{ hashFiles('.github/workflows/scripts/windows/build-dependencies.bat', '.github/workflows/scripts/common/*.patch') }} @@ -136,7 +136,7 @@ jobs: cmake --build build --config Release --target unittests - name: Upload artifact - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ steps.artifact-metadata.outputs.artifact-name }} path: | @@ -150,7 +150,7 @@ jobs: !./bin/**/*.lib - name: Upload artifact - with symbols - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v6 with: name: ${{ steps.artifact-metadata.outputs.artifact-name }}-symbols path: ./bin/**/*.pdb