Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/gettext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
apt-get install git -y

- name: Clone repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.GIT_USER_TOKEN }}

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
image: ghcr.io/elementary/docker:${{ matrix.version }}

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Dependencies
run: |
apt update
Expand All @@ -39,7 +39,7 @@ jobs:
image: fedora:latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install Dependencies
run: |
dnf install -y gala-devel libgee-devel gobject-introspection-devel glib2-devel granite-devel gtk3-devel meson valac
Expand All @@ -63,7 +63,7 @@ jobs:
zypper addrepo https://download.opensuse.org/repositories/X11:Pantheon/15.6/X11:Pantheon.repo
zypper --gpg-auto-import-keys refresh
zypper --non-interactive install tar git gala-devel libgee-devel gobject-introspection-devel glib2-devel granite6-devel granite-devel gtk3-devel meson vala gcc
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build
env:
DESTDIR: out
Expand All @@ -78,7 +78,7 @@ jobs:
image: valalang/lint

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Lint
run: |
io.elementary.vala-lint -d lib
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ 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@v5
- uses: actions/checkout@v6
- uses: elementary/actions/release@main
env:
GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}"
Expand Down
Loading