-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a16d725
commit fe52a3a
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -47,7 +47,7 @@ jobs: | |
# miniforge-variant: Mambaforge-pypy3 | ||
|
||
steps: | ||
- uses: actions/[email protected].1 | ||
- uses: actions/[email protected].6 | ||
|
||
- name: Additional info about the build | ||
shell: bash | ||
|
@@ -61,7 +61,7 @@ jobs: | |
|
||
- name: Make Cache (no worflow_dispatch) | ||
if: ${{ github.event_name != 'workflow_dispatch' }} | ||
uses: actions/cache@v3.3.2 | ||
uses: actions/cache@v4.0.2 | ||
with: | ||
path: ~/conda_pkgs_dir # ${{ matrix.prefix }} | ||
# Increase the last number (0) to reset cache manually | ||
|
@@ -70,15 +70,15 @@ jobs: | |
|
||
- name: Make Cache (worflow_dispatch) | ||
if: ${{ github.event_name == 'workflow_dispatch' }} | ||
uses: actions/cache@v3.3.2 | ||
uses: actions/cache@v4.0.2 | ||
with: | ||
path: ~/conda_pkgs_dir # ${{ matrix.prefix }} | ||
key: ${{ matrix.label }}-conda-${{ hashFiles('devtools/conda-envs/fep_env.yaml') }}-${{ env.DATE }}-${{ inputs.CACHE_NUMBER }} | ||
id: cache2 | ||
|
||
|
||
# More info on options: https://github.com/conda-incubator/setup-miniconda | ||
- uses: conda-incubator/[email protected].1 | ||
- uses: conda-incubator/[email protected].4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
condarc-file: ${{ matrix.condarc-file }} | ||
|
@@ -122,7 +122,7 @@ jobs: | |
pytest -v --cov=transformato --cov-report=xml --color=yes transformato/tests/ | ||
- name: CodeCov | ||
uses: codecov/codecov-action@v3.1.4 | ||
uses: codecov/codecov-action@v4.4.1 | ||
with: | ||
file: ./coverage.xml | ||
flags: unittests | ||
|