Skip to content

Commit 5d47032

Browse files
build(deps): bump actions/cache from 4.2.3 to 4.3.0
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@5a3ec84...0057852) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 2de83f4 commit 5d47032

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/autodoc_cicd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
python-version: ${{ env.MAIN_PYTHON_VERSION }}
3636

3737
- name: "Cache pip"
38-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
38+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
3939
with:
4040
path: ~/.cache/pip
4141
key: Python-pyconverter-generatedcommands-v${{ env.RESET_PIP_CACHE_2 }}-${{ hashFiles('pyproject.toml') }}
@@ -99,7 +99,7 @@ jobs:
9999
name: package
100100

101101
- name: "Cache pip"
102-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
102+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
103103
with:
104104
path: ~/.cache/pip
105105
key: Python-pyconverter-generatedcommands-v${{ env.RESET_PIP_CACHE_2 }}-${{ env.MAIN_PYTHON_VERSION }}-${{ hashFiles('pyproject.toml') }}
@@ -116,15 +116,15 @@ jobs:
116116
echo "PyConverter-GeneratedCommands version is: $(python -c 'from pyconverter.generatedcommands import __version__; print(__version__)')"
117117
118118
- name: "Cache docs build directory"
119-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
119+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
120120
with:
121121
path: doc/_build
122122
key: doc-build-pyconverter-generatedcommands-v${{ env.RESET_DOC_BUILD_CACHE_2 }}-${{ inputs.PYCONVERTER_GENERATED_VERSION }}-${{ github.sha }}
123123
restore-keys: |
124124
doc-build-pyconverter-generatedcommands-v${{ env.RESET_DOC_BUILD_CACHE_2 }}-${{ inputs.PYCONVERTER_GENERATED_VERSION }}
125125
126126
- name: "Cache autosummary"
127-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
127+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
128128
with:
129129
path: doc/source/_autosummary/*.rst
130130
key: autosummary-pyconverter-generatedcommands-v${{ env.RESET_AUTOSUMMARY_CACHE_2 }}-${{ inputs.PYCONVERTER_GENERATED_VERSION }}-${{ github.sha }}

.github/workflows/ci_cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ jobs:
137137
sudo apt-get install pandoc
138138
139139
- name: "Cache pip"
140-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
140+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
141141
with:
142142
path: ~/.cache/pip
143143
key: Python-v${{ env.RESET_PIP_CACHE }}-${{ runner.os }}-${{ hashFiles('pyproject.toml') }}
@@ -194,7 +194,7 @@ jobs:
194194
python-version: ${{ env.MAIN_PYTHON_VERSION }}
195195

196196
- name: "Cache pip"
197-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
197+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
198198
with:
199199
path: ~/.cache/pip
200200
key: Python-pyconverter.xml2py-v${{ env.RESET_PIP_CACHE }}-${{ env.MAIN_PYTHON_VERSION }}-${{ hashFiles('pyproject.toml') }}
@@ -212,15 +212,15 @@ jobs:
212212
echo "pyconverter.xml2py version is: $(python -c 'from pyconverter.xml2py import __version__; print(__version__)')"
213213
214214
- name: "Cache docs build directory"
215-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
215+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
216216
with:
217217
path: doc/_build
218218
key: doc-build-pyconverter-xml2py-v${{ env.RESET_DOC_BUILD_CACHE }}-${{ env.PYCONVERTER_VERSION }}-${{ github.sha }}
219219
restore-keys: |
220220
doc-build-pyconverter-xml2py-v${{ env.RESET_DOC_BUILD_CACHE }}-${{ env.PYCONVERTER_VERSION }}
221221
222222
- name: "Cache autosummary"
223-
uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 # zizmor: ignore[cache-poisoning]
223+
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.2.3 # zizmor: ignore[cache-poisoning]
224224
with:
225225
path: doc/source/**/_autosummary/**/*.rst
226226
key: autosummary-pyconverter-xml2py-v${{ env.RESET_AUTOSUMMARY_CACHE }}-${{ env.PYCONVERTER_VERSION }}-${{ github.sha }}

0 commit comments

Comments
 (0)