Skip to content

Commit b80bf3e

Browse files
CI(dependabot): Bump actions/cache from 4 to 5 (#74)
* CI(dependabot): Bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * CI: Use action to install ImageMagick * CI: Use apt-get to install system packages --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Adrien Berchet <adrien.berchet@epfl.ch>
1 parent 3a6e017 commit b80bf3e

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/run-tox.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,12 @@ jobs:
2727
uses: actions/setup-python@v6
2828
with:
2929
python-version: ${{ matrix.python-version }}
30-
- name: Cache APT Packages
31-
uses: awalsh128/cache-apt-pkgs-action@latest
32-
with:
33-
packages:
34-
poppler-utils
35-
imagemagick
36-
version: 1.1
30+
- name: Install APT Packages
31+
run: |
32+
sudo apt-get update
33+
sudo apt-get install -y poppler-utils imagemagick
3734
- name: Cache tox and precommit environments
38-
uses: actions/cache@v4
35+
uses: actions/cache@v5
3936
with:
4037
path: |
4138
.tox

0 commit comments

Comments
 (0)