Skip to content

Commit

Permalink
actions/checkout@v3 (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisenzahl authored and danirabbit committed Jun 15, 2023
1 parent baedd88 commit fdb8792
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
24 changes: 19 additions & 5 deletions .github/workflows/gettext.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,28 @@
name: Gettext Updates

on:
push:
branches: [master]
branches: master
jobs:
gettext_template:
build:
runs-on: ubuntu-22.04
container:
image: elementary/docker:next-unstable

steps:
- uses: actions/checkout@v1
- uses: elementary/actions/gettext-template@next
- name: Install git
run: |
apt-get update
apt-get install git -y
- name: Clone repository
uses: actions/checkout@v3
with:
token: ${{ secrets.GIT_USER_TOKEN }}

- name: Update Translation Files
uses: elementary/actions/gettext-template@next
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }}
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
9 changes: 4 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
image: ghcr.io/elementary/docker:${{ matrix.version }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
apt update
Expand All @@ -32,13 +32,12 @@ jobs:
ninja -C build
lint:

runs-on: ubuntu-latest

container:
image: valalang/lint

steps:
- uses: actions/checkout@v1
- name: Lint
run: io.elementary.vala-lint -d .
- uses: actions/checkout@v3
- name: Lint
run: io.elementary.vala-lint -d .
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- uses: elementary/actions/release@master
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
with:
release_branch: 'odin'
release_branch: 'horus'

0 comments on commit fdb8792

Please sign in to comment.