Skip to content

Commit

Permalink
fix(cicd): add cache-apt-pkgs-action to install zsh (#754)
Browse files Browse the repository at this point in the history
* also updates checkout + setup-python action versions in test
  • Loading branch information
korikuzma authored Jan 3, 2025
1 parent 894bc65 commit 43b9b7b
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,15 @@ jobs:
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: zsh
version: 1.0

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
Expand Down

0 comments on commit 43b9b7b

Please sign in to comment.