Skip to content

Commit

Permalink
actions/checkout@v3 (#811)
Browse files Browse the repository at this point in the history
  • Loading branch information
meisenzahl authored Jan 11, 2023
1 parent a8a67a9 commit 1621112
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up QEMU for aarch64 emulation
if: ${{ matrix.arch != 'x86_64' }}
Expand All @@ -51,6 +51,6 @@ jobs:
image: valalang/lint

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Lint
run: io.elementary.vala-lint -d .
29 changes: 19 additions & 10 deletions .github/workflows/merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up QEMU for aarch64 emulation
if: ${{ matrix.arch != 'x86_64' }}
Expand Down Expand Up @@ -50,15 +50,24 @@ jobs:

gettext:
name: Gettext
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
container:
image: elementary/docker:next-unstable

steps:
- name: Checkout
uses: actions/checkout@v1
- 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: Gettext
uses: elementary/actions/gettext-template@master
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
- name: Update Translation Files
uses: elementary/actions/gettext-template@next
env:
GIT_USER_TOKEN: ${{ secrets.GIT_USER_TOKEN }}
GIT_USER_NAME: "elementaryBot"
GIT_USER_EMAIL: "[email protected]"
21 changes: 10 additions & 11 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

name: Release

on:
Expand All @@ -15,14 +14,14 @@ jobs:
if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release')

steps:
- name: Checkout
uses: actions/checkout@v1
- name: Checkout
uses: actions/checkout@v3

- name: Release
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: 'horus'
- name: Release
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: "horus"

0 comments on commit 1621112

Please sign in to comment.