From b2b99bbffe62083f047e23223ae12e52ce3129c5 Mon Sep 17 00:00:00 2001 From: Tulio Leao Date: Sat, 14 Sep 2024 06:24:03 -0300 Subject: [PATCH] Update CI to checkout@v4 (#2927) --- .github/workflows/translation_check.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/translation_check.yml b/.github/workflows/translation_check.yml index 1c8f172ca9..fdfa742f2b 100644 --- a/.github/workflows/translation_check.yml +++ b/.github/workflows/translation_check.yml @@ -8,21 +8,21 @@ jobs: steps: - name: Get Pull Request - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: pr ref: ${{github.event.pull_request.head.ref}} repository: ${{github.event.pull_request.head.repo.full_name}} - name: Get OpenRCT2 develop (for en-GB.txt) - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: repository: OpenRCT2/OpenRCT2 ref: develop path: OpenRCT2 - name: Checkout translations before PR changes (for comparsion) - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: master ref: ${{github.event.pull_request.head.ref}} @@ -53,7 +53,7 @@ jobs: run: rm -rf master - name: Checkout upstream master as master - uses: actions/checkout@v2 + uses: actions/checkout@v4 if: ${{ steps.merge-base-commit.outputs.merge_base == github.event.pull_request.head.sha }} with: ref: master @@ -65,7 +65,7 @@ jobs: python-version: '3.8' - name: Checkout upstream master (in order to use the newest version of the script) - uses: actions/checkout@v2 + uses: actions/checkout@v4 with: path: upstream_master ref: master