45
45
46
46
# Checkout current git repository
47
47
- name : Checkout
48
- uses : actions/checkout@v2.3.4
48
+ uses : actions/checkout@v2.3.5
49
49
if : github.event_name != 'repository_dispatch'
50
50
with :
51
51
# fecth all history so that setuptools-scm works
@@ -62,12 +62,12 @@ jobs:
62
62
63
63
# Checkout the pull request branch
64
64
- name : Checkout
65
- uses : actions/checkout@v2
65
+ uses : actions/checkout@v2.3.5
66
66
if : github.event_name == 'repository_dispatch'
67
67
with :
68
68
token : ${{ steps.generate-token.outputs.token }}
69
69
repository : ${{ github.event.client_payload.pull_request.head.repo.full_name }}
70
- ref : ${{ github.event.client_payload. pull_request.head.ref }}
70
+ ref : ${{ github.event.pull_request.head.sha }}
71
71
# fecth all history so that setuptools-scm works
72
72
fetch-depth : 0
73
73
88
88
- name : Install dependencies
89
89
run : |
90
90
mamba install ninja cmake libblas libcblas liblapack fftw gdal geopandas \
91
- ghostscript libnetcdf hdf5 zlib curl pcre make dvc=2.3.0
91
+ ghostscript libnetcdf hdf5 zlib curl pcre make dvc
92
92
pip install --pre numpy pandas xarray netCDF4 packaging \
93
93
ipython pytest-cov pytest-mpl pytest>=6.0 sphinx-gallery \
94
94
tomli
@@ -107,7 +107,7 @@ jobs:
107
107
108
108
# Download cached remote files (artifacts) from GitHub
109
109
- name : Download remote data from GitHub
110
- uses : dawidd6/action-download-artifact@v2.14.1
110
+ uses : dawidd6/action-download-artifact@v2.15.0
111
111
with :
112
112
workflow : cache_data.yaml
113
113
workflow_conclusion : success
0 commit comments