diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-12-06 23:49:29 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-06 18:19:29 +0000 |
commit | 968507aba0c7b7bb7c3df0ee1bd6caa8bd0fcc9f (patch) | |
tree | bb6c0dbc3381c5314953d99d0581d0a99b700388 /.github/workflows/sync_crowdin.yml | |
parent | 20eae05eec21784bf57a6687b702918476b83a05 (diff) |
Convert all GHA references to normal versions (#1570)
Diffstat (limited to '.github/workflows/sync_crowdin.yml')
-rw-r--r-- | .github/workflows/sync_crowdin.yml | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/.github/workflows/sync_crowdin.yml b/.github/workflows/sync_crowdin.yml index ddaa1450..e6d6aed9 100644 --- a/.github/workflows/sync_crowdin.yml +++ b/.github/workflows/sync_crowdin.yml @@ -8,11 +8,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + uses: actions/checkout@v2.4.0 - - uses: actions/setup-java@d202f5dbf7256730fb690ec59f6381650114feb2 - with: - java-version: '11' + - name: Set up JDK + uses : actions/setup-java@v2.4.0 + with : + distribution : 'zulu' + java-version : '11' + cache: 'gradle' - name: Download new translations from Crowdin run: ./gradlew crowdin @@ -25,7 +28,7 @@ jobs: run: if [[ $(git diff --stat) != '' ]]; then echo "UPDATED=true" >> $GITHUB_ENV; fi - name: Create Pull Request - uses: peter-evans/create-pull-request@01f7dd1d28f5131231ba3ede0f1c8cb413584a1d + uses: peter-evans/create-pull-request@v3.11.0 if: env.UPDATED == 'true' with: assignees: msfjarvis |