diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index d5dd27d26..600fc725a 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -29,7 +29,7 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.0.0 - name: Fail on bad translations run: if grep -ri "<xliff" app/src/main/res/values*/strings.xml; then echo "Invalidly escaped translations found"; exit 1; fi - uses: gradle/wrapper-validation-action@v1 @@ -48,7 +48,7 @@ jobs: run: ./gradlew spotbugsRelease - name: Archive test results if: always() - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v3.1.3 with: name: test-results path: app/build/reports diff --git a/.github/workflows/changelog-to-fastlane.yml b/.github/workflows/changelog-to-fastlane.yml index 44ec4e9e3..d2da75292 100644 --- a/.github/workflows/changelog-to-fastlane.yml +++ b/.github/workflows/changelog-to-fastlane.yml @@ -27,15 +27,15 @@ jobs: steps: - name: Checkout repo id: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.0.0 - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v4.7.0 with: python-version: '3.x' - name: Run converter script run: python .scripts/changelog_to_fastlane.py - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v5.0.2 with: title: "Update Fastlane changelogs" commit-message: "Update Fastlane changelogs" diff --git a/.github/workflows/contributors-to-file.yml b/.github/workflows/contributors-to-file.yml index 1c046a819..1e74791d4 100644 --- a/.github/workflows/contributors-to-file.yml +++ b/.github/workflows/contributors-to-file.yml @@ -25,14 +25,14 @@ jobs: steps: - name: Checkout repo id: checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4.0.0 - name: Update contributors id: update_contributors - uses: TheLastProject/contributors-to-file-action@v3 + uses: TheLastProject/contributors-to-file-action@v3.0.1 with: file_in_repo: app/src/main/res/raw/contributors.txt - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v5.0.2 with: title: "Update contributors" commit-message: "Update contributors" diff --git a/.github/workflows/generate-feature-graphic.yml b/.github/workflows/generate-feature-graphic.yml index cdac24d02..7cf7aa490 100644 --- a/.github/workflows/generate-feature-graphic.yml +++ b/.github/workflows/generate-feature-graphic.yml @@ -24,7 +24,7 @@ jobs: generate-feature-graphic: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.0.0 - name: Install requirements run: | sudo apt-get update @@ -70,7 +70,7 @@ jobs: popd done - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v5.0.2 with: title: "Update feature graphic" commit-message: "Update feature graphic" diff --git a/.github/workflows/update-locales.yml b/.github/workflows/update-locales.yml index 44078fbc1..30f0bd5d2 100644 --- a/.github/workflows/update-locales.yml +++ b/.github/workflows/update-locales.yml @@ -24,11 +24,11 @@ jobs: update-locales: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4.0.0 - name: Update locales run: .scripts/locales.py - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v5.0.2 with: title: "Update locales" commit-message: "Update locales"