Skip to content

Commit 2ced246

Browse files
committed
f
1 parent dc4d585 commit 2ced246

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/CI.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
image: fedora:44
1616

1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v3
1919
with:
2020
submodules: recursive
2121

@@ -26,29 +26,29 @@ jobs:
2626

2727
- name: Install host dependencies
2828
run: |
29-
sudo dnf -y update
30-
sudo dnf -y install flatpak mutter flatpak-builder foundry
29+
dnf -y update
30+
dnf -y install flatpak mutter flatpak-builder foundry
3131
3232
# Restore caches
3333
- name: Restore Flatpak dependencies
3434
uses: actions/cache/restore@v3
3535
with:
3636
path: ~/.local/share/flatpak
37-
key: ${{ runner.os }}-flatpak-dependencies-${{ github.run_id }}
37+
key: flatpak-deps-${{ runner.os }}
3838
restore-keys: |
3939
${{ runner.os }}-flatpak-dependencies-
4040
- name: Restore .flatpak-builder
4141
uses: actions/cache/restore@v3
4242
with:
4343
path: .flatpak-builder
44-
key: ${{ runner.os }}-flatpak-builder-${{ github.run_id }}
44+
key: flatpak-builder-${{ runner.os }}
4545
restore-keys: |
4646
${{ runner.os }}-flatpak-builder-
4747
- name: Restore .foundry
4848
uses: actions/cache/restore@v3
4949
with:
5050
path: .foundry
51-
key: ${{ runner.os }}-foundry-${{ github.run_id }}
51+
key: foundry-${{ runner.os }}
5252
restore-keys: |
5353
${{ runner.os }}-foundry-
5454
@@ -62,16 +62,16 @@ jobs:
6262
if: always()
6363
with:
6464
path: ~/.local/share/flatpak
65-
key: ${{ runner.os }}-flatpak-dependencies-${{ github.run_id }}
65+
key: flatpak-deps-${{ runner.os }}
6666
- name: Save .flatpak-builder
6767
uses: actions/cache/save@v3
6868
if: always()
6969
with:
7070
path: .flatpak-builder
71-
key: ${{ runner.os }}-flatpak-builder-${{ github.run_id }}
71+
key: flatpak-builder-${{ runner.os }}
7272
- name: Save .foundry
7373
uses: actions/cache/save@v3
7474
if: always()
7575
with:
7676
path: .foundry
77-
key: ${{ runner.os }}-foundry-${{ github.run_id }}
77+
key: foundry-${{ runner.os }}

0 commit comments

Comments
 (0)