Skip to content
Open
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
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
outputs:
run_ci: ${{ steps.filter.outputs.run_ci }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
if: needs.changes.outputs.run_ci == 'true'
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install i18n tooling
run: |
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- ubuntu: "24.04"
python: "3.14"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Set up Python
if: matrix.python == '3.14'
Expand Down Expand Up @@ -262,7 +262,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Cache pip downloads
uses: actions/cache@v4
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
container:
image: fedora:41
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install system dependencies
run: |
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
container:
image: opensuse/tumbleweed:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install system dependencies
run: |
Expand Down Expand Up @@ -428,7 +428,7 @@ jobs:
needs: [changes, test-ubuntu, test-debian, test-fedora-smoke, test-opensuse-smoke]
if: needs.changes.outputs.run_ci == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install build dependencies
run: |
Expand Down Expand Up @@ -494,7 +494,7 @@ jobs:
needs: [changes, test-ubuntu, test-debian, test-fedora-smoke, test-opensuse-smoke]
if: needs.changes.outputs.run_ci == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install RPM tooling
run: |
Expand All @@ -521,7 +521,7 @@ jobs:
needs: [changes, test-ubuntu, test-debian, test-fedora-smoke, test-opensuse-smoke]
if: needs.changes.outputs.run_ci == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Flatpak tooling
run: |
Expand Down Expand Up @@ -552,7 +552,7 @@ jobs:
needs: [changes, test-ubuntu, test-debian, test-fedora-smoke, test-opensuse-smoke]
if: needs.changes.outputs.run_ci == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Snapcraft
run: |
Expand Down Expand Up @@ -584,7 +584,7 @@ jobs:
needs: [changes, test-ubuntu, test-debian, test-fedora-smoke, test-opensuse-smoke]
if: needs.changes.outputs.run_ci == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install AppImage tooling
run: |
Expand Down Expand Up @@ -615,7 +615,7 @@ jobs:
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Arch build tooling
run: |
Expand Down Expand Up @@ -645,7 +645,7 @@ jobs:
needs: [changes, test-ubuntu, test-debian, test-fedora-smoke, test-opensuse-smoke]
if: needs.changes.outputs.run_ci == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Install Nix
uses: cachix/install-nix-action@v30
Expand Down Expand Up @@ -681,7 +681,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- name: Get version from pyproject.toml
id: version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Dependency and SAST scan
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: actions/setup-python@v5
with:
Expand Down
Loading