Bump actions/checkout from 4 to 5 (#634) #244
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Gettext Updates | |
| on: | |
| push: | |
| branches: [master] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| container: | |
| image: ghcr.io/elementary/docker:next-unstable | |
| steps: | |
| - name: Install git | |
| run: | | |
| apt-get update | |
| apt-get install git -y | |
| - name: Clone repository | |
| uses: actions/checkout@v5 | |
| with: | |
| token: ${{ secrets.GIT_USER_TOKEN }} | |
| - name: Update Translation Files | |
| uses: elementary/actions/gettext-template@main | |
| env: | |
| GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }} | |
| GIT_USER_NAME: "elementaryBot" | |
| GIT_USER_EMAIL: "builds@elementary.io" |