diff --git a/.github/workflows/cron_update_base_translation.yml b/.github/workflows/cron_update_base_translation.yml index 15706c166ea0b..400d914de4e0f 100644 --- a/.github/workflows/cron_update_base_translation.yml +++ b/.github/workflows/cron_update_base_translation.yml @@ -11,7 +11,7 @@ jobs: name: "Update Base Translation" runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - name: Update Base Translation run: ./.github/workflows/scripts/common/update_base_translation.sh diff --git a/.github/workflows/cron_update_controller_db.yml b/.github/workflows/cron_update_controller_db.yml index 70b9a08cee791..c07731b08bea2 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@v5 - name: Get Latest DB and Prepare DB File run: | diff --git a/.github/workflows/lint_gamedb.yml b/.github/workflows/lint_gamedb.yml index 673421c45acdb..57ec4c49dd7c2 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@v5 - name: Install Packages run: | diff --git a/.github/workflows/linux_build_flatpak.yml b/.github/workflows/linux_build_flatpak.yml index 50b1062db9b4b..beefccf4e0ae8 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@v5 with: set-safe-directory: ${{ env.GITHUB_WORKSPACE }} diff --git a/.github/workflows/linux_build_qt.yml b/.github/workflows/linux_build_qt.yml index 80ae3d52e5fd9..1b20ebc28478c 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@v5 with: fetch-depth: 0 diff --git a/.github/workflows/macos_build.yml b/.github/workflows/macos_build.yml index 59811d477a4ff..3d38b3fb49489 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@v5 # actions/checkout elides tags, fetch them primarily for releases - name: Fetch Tags diff --git a/.github/workflows/release_cut_new.yml b/.github/workflows/release_cut_new.yml index d43e600a856a7..96a77ceae5d5d 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@v5 # 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@v5 - name: Prepare Artifact Folder run: mkdir ./ci-artifacts/ - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v5 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@v5 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..3608495f4bc05 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@v5 - 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..477746c06f1a8 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@v5 # actions/checkout elides tags, fetch them primarily for releases - name: Fetch Tags