Skip to content

Commit 9ef6bd6

Browse files
Bump actions/cache from 3 to 4 (#26)
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent caaeda9 commit 9ef6bd6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/build-test.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: Cache Xerces-C Installation
5555
id: cache-xerces
56-
uses: actions/cache@v3
56+
uses: actions/cache@v4
5757
with:
5858
path: ${{ github.workspace }}/xerces
5959
key: xerces-v${{ env.XERCES_VERSION }}-cpp${{ env.CPP_STANDARD }}
@@ -68,7 +68,7 @@ jobs:
6868
6969
- name: Cache Geant4 Installation
7070
id: cache-geant4
71-
uses: actions/cache@v3
71+
uses: actions/cache@v4
7272
with:
7373
path: ${{ env.Geant4_DIR }}
7474
key: geant4-v${{ env.GEANT4_VERSION }}-cpp${{ env.CPP_STANDARD }}
@@ -93,15 +93,15 @@ jobs:
9393
steps:
9494
- name: Cache Geant4 Installation
9595
id: cache-geant4
96-
uses: actions/cache@v3
96+
uses: actions/cache@v4
9797
with:
9898
path: ${{ github.workspace }}/geant4
9999
key: geant4-v${{ env.GEANT4_VERSION }}-cpp${{ env.CPP_STANDARD }}
100100
fail-on-cache-miss: true
101101

102102
- name: Cache Geant4 Datasets
103103
id: cache-geant4-data
104-
uses: actions/cache@v3
104+
uses: actions/cache@v4
105105
with:
106106
path: ${{ github.workspace }}/geant4-data
107107
key: geant4-${{ env.GEANT4_VERSION }}-data
@@ -153,15 +153,15 @@ jobs:
153153
154154
- name: Cache Xerces-C Installation
155155
id: cache-xerces
156-
uses: actions/cache@v3
156+
uses: actions/cache@v4
157157
with:
158158
path: ${{ github.workspace }}/xerces
159159
key: xerces-v${{ env.XERCES_VERSION }}-cpp${{ env.CPP_STANDARD }}
160160
fail-on-cache-miss: true
161161

162162
- name: Cache Geant4 Installation
163163
id: cache-geant4
164-
uses: actions/cache@v3
164+
uses: actions/cache@v4
165165
with:
166166
path: ${{ github.workspace }}/geant4
167167
key: geant4-v${{ env.GEANT4_VERSION }}-cpp${{ env.CPP_STANDARD }}
@@ -175,7 +175,7 @@ jobs:
175175
- name: Cache Geant4 Datasets
176176
if: matrix.python-version != '3.11'
177177
id: cache-geant4-data
178-
uses: actions/cache@v3
178+
uses: actions/cache@v4
179179
with:
180180
path: ${{ github.workspace }}/geant4-data
181181
key: geant4-${{ env.GEANT4_VERSION }}-data

.github/workflows/wheels.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ jobs:
129129
- name: Cache Xerces-C Installation
130130
if: matrix.os != 'ubuntu-latest'
131131
id: cache-xerces
132-
uses: actions/cache@v3
132+
uses: actions/cache@v4
133133
with:
134134
path: ${{ github.workspace }}/xerces
135135
key:
@@ -149,7 +149,7 @@ jobs:
149149
- name: Cache Geant4 Installation
150150
if: matrix.os != 'ubuntu-latest'
151151
id: cache-geant4
152-
uses: actions/cache@v3
152+
uses: actions/cache@v4
153153
with:
154154
path: ${{ env.Geant4_DIR }}
155155
key:

0 commit comments

Comments
 (0)