Bump conda-incubator/setup-miniconda from 3.0.4 to 3.1.0 #2147
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Caching Example" | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "develop" | |
- "main" | |
- "master" | |
schedule: | |
# Note that cronjobs run on master/main by default | |
- cron: "0 0 * * *" | |
concurrency: | |
group: | |
${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} | |
cancel-in-progress: true | |
jobs: | |
caching-ubuntu: | |
# prevent cronjobs from running on forks | |
if: | |
(github.event_name == 'schedule' && github.repository == | |
'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') | |
name: Caching on Ubuntu | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache conda | |
uses: actions/cache@v4 | |
env: | |
# Increase this value to reset cache if etc/example-environment.yml has not changed | |
CACHE_NUMBER: 2 | |
with: | |
# Use faster GNU tar | |
enableCrossOsArchive: true | |
path: ~/conda_pkgs_dir | |
key: | |
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ | |
hashFiles('etc/example-environment.yml') }} | |
- uses: ./ | |
with: | |
activate-environment: anaconda-client-env | |
channel-priority: strict | |
environment-file: etc/example-environment-caching.yml | |
use-only-tar-bz2: true | |
caching-windows: | |
# prevent cronjobs from running on forks | |
if: | |
(github.event_name == 'schedule' && github.repository == | |
'conda-incubator/setup-miniconda') || (github.event_name != 'schedule') | |
name: Caching on Windows | |
runs-on: "windows-latest" | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache conda | |
uses: actions/cache@v3 | |
env: | |
# Increase this value to reset cache if etc/example-environment.yml has not changed | |
CACHE_NUMBER: 2 | |
with: | |
# Use faster GNU tar | |
enableCrossOsArchive: true | |
path: D:\conda_pkgs_dir | |
key: | |
${{ runner.os }}-conda-${{ env.CACHE_NUMBER }}-${{ | |
hashFiles('etc/example-environment.yml') }} | |
- uses: ./ | |
with: | |
activate-environment: anaconda-client-env | |
channel-priority: strict | |
environment-file: etc/example-environment-caching.yml | |
pkgs-dirs: D:\conda_pkgs_dir | |
- run: conda info |