We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74ae123 commit 5585b1bCopy full SHA for 5585b1b
1 file changed
.github/workflows/python-package.yml
@@ -17,18 +17,18 @@ jobs:
17
18
steps:
19
- name: Checkout Repository
20
- uses: actions/checkout@v4
+ uses: actions/checkout@v5
21
22
- name: Cache Conda environment
23
- uses: actions/cache@v4
+ uses: actions/cache@v5
24
with:
25
path: ${{ env.CONDA }}/envs
26
key: ${{ runner.os }}-conda-${{ matrix.python-version }}-v2-${{ hashFiles('env.yml', 'setup.py') }}
27
restore-keys: |
28
${{ runner.os }}-conda-${{ matrix.python-version }}-v2-
29
30
- name: Setup Conda Environment with Mamba 🐍
31
- uses: conda-incubator/setup-miniconda@v3
+ uses: conda-incubator/setup-miniconda@v4
32
33
python-version: ${{ matrix.python-version }}
34
environment-file: env.yml
0 commit comments