From a697e13b18a82b31f09077aa074c8711de9bc958 Mon Sep 17 00:00:00 2001 From: Andrew Tribick Date: Wed, 27 Dec 2023 12:18:45 +0100 Subject: [PATCH] Use apt-get instead of apt in translations workflow - Fixes warning in workflow output - Also update checkout to v4 --- .github/workflows/translations.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/translations.yml b/.github/workflows/translations.yml index 8e56b9080..fa79dcfd5 100644 --- a/.github/workflows/translations.yml +++ b/.github/workflows/translations.yml @@ -18,11 +18,11 @@ jobs: steps: - name: 'Install dependencies' run: | - sudo apt update - sudo apt install -y gettext + sudo apt-get update + sudo apt-get install -y gettext - name: 'Checkout source code' - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: 'Validate translations' working-directory: ${{github.workspace}}/po