We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 835881a commit 2fb744aCopy full SHA for 2fb744a
.github/workflows/build.yaml
@@ -59,6 +59,12 @@ jobs:
59
- { qt: 6.6.3, arch: arm64 }
60
steps:
61
- run: ls /var/cache/apt/archives/
62
+ - name: Cache APT archives
63
+ uses: actions/cache@v4
64
+ with:
65
+ path: /var/cache/apt/archives
66
+ key: ${{ runner.os }}-${{ runner.arch }}-apt-archives
67
+ - run: ls /var/cache/apt/archives/
68
- name: Upgrade OS
69
run: |
70
sudo apt-mark hold firefox grub-efi-${{ matrix.arch == 'arm64' && 'arm64' || 'amd64' }}-signed
0 commit comments