Skip to content

Commit 7b53c55

Browse files
Bump actions/cache from 2 to 3
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 824edba commit 7b53c55

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
python-version: ${{ matrix.python-version }}
6565

6666
- name: Linux pip cache
67-
uses: actions/cache@v2
67+
uses: actions/cache@v3
6868
if: ${{ runner.os == 'Linux' }}
6969
with:
7070
path: ~/.cache/pip
@@ -73,7 +73,7 @@ jobs:
7373
Python-v${{ env.RESET_PIP_CACHE }}-${{ runner.os }}-${{ matrix.python-version }}
7474
7575
- name: Window pip cache
76-
uses: actions/cache@v2
76+
uses: actions/cache@v3
7777
if: ${{ runner.os == 'Windows' }}
7878
with:
7979
path: ~\AppData\Local\pip\Cache
@@ -137,7 +137,7 @@ jobs:
137137
sudo apt install zip pandoc libgl1-mesa-glx xvfb texlive-latex-extra latexmk
138138
139139
- name: Cache pip
140-
uses: actions/cache@v2
140+
uses: actions/cache@v3
141141
with:
142142
path: ~/.cache/pip
143143
key: Python-v${{ env.RESET_PIP_CACHE }}-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements/requirements_docs*.txt') }}
@@ -176,23 +176,23 @@ jobs:
176176
id: version
177177

178178
- name: Cache examples
179-
uses: actions/cache@v2
179+
uses: actions/cache@v3
180180
with:
181181
path: doc/source/examples
182182
key: Examples-v${{ env.RESET_EXAMPLES_CACHE }}-${{ steps.version.outputs.PYMAPDL_VERSION }}-${{ github.sha }}
183183
restore-keys: |
184184
Examples-v${{ env.RESET_EXAMPLES_CACHE }}-${{ steps.version.outputs.PYMAPDL_VERSION }}
185185
186186
- name: Cache docs build directory
187-
uses: actions/cache@v2
187+
uses: actions/cache@v3
188188
with:
189189
path: doc/build
190190
key: doc-build-v${{ env.RESET_DOC_BUILD_CACHE }}-${{ steps.version.outputs.PYMAPDL_VERSION }}-${{ github.sha }}
191191
restore-keys: |
192192
doc-build-v${{ env.RESET_DOC_BUILD_CACHE }}-${{ steps.version.outputs.PYMAPDL_VERSION }}
193193
194194
- name: Cache autosummary
195-
uses: actions/cache@v2
195+
uses: actions/cache@v3
196196
with:
197197
path: doc/source/**/_autosummary/*.rst
198198
key: autosummary-v${{ env.RESET_AUTOSUMMARY_CACHE }}-${{ steps.version.outputs.PYMAPDL_VERSION }}-${{ github.sha }}
@@ -262,7 +262,7 @@ jobs:
262262
sudo apt install libgl1-mesa-glx xvfb
263263
264264
- name: Cache pip
265-
uses: actions/cache@v2
265+
uses: actions/cache@v3
266266
with:
267267
path: ~/.cache/pip
268268
key: Python-v${{ env.RESET_PIP_CACHE }}-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements/requirements_tests.txt') }}

.github/workflows/nightly-mapdl-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
sudo apt install libgl1-mesa-glx xvfb
3131
3232
- name: Cache pip
33-
uses: actions/cache@v2
33+
uses: actions/cache@v3
3434
with:
3535
path: ~/.cache/pip
3636
key: Python-${{ runner.os }}-${{ matrix.python-version }}-${{ hashFiles('setup.py') }}-${{ hashFiles('requirements/requirements_tests.txt') }}

0 commit comments

Comments
 (0)