Skip to content

Commit fbb74a7

Browse files
committed
Update inter-workflow refs to v3
1 parent 0241ec1 commit fbb74a7

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This workflow handles building and running short CI tests on a given spack manif
6969
```yaml
7070
jobs:
7171
test:
72-
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
72+
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
7373
with:
7474
spack-manifest-path: .github/build/spack.yaml.j2
7575
```
@@ -79,7 +79,7 @@ jobs:
7979
```yaml
8080
jobs:
8181
test:
82-
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
82+
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
8383
with:
8484
spack-manifest-path: .github/build/spack.yaml.j2
8585
spack-manifest-data-path: .github/build/data/data.json
@@ -109,7 +109,7 @@ jobs:
109109
- .github/build/one.spack.yaml.j2
110110
- .github/build/two.spack.yaml.j2
111111
- .github/build/three.spack.yaml.j2
112-
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
112+
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
113113
with:
114114
spack-manifest-path: ${{ matrix.manifest }}
115115
```
@@ -129,7 +129,7 @@ jobs:
129129
compiler: .github/build/compiler/intel.spack.yaml
130130
- manifest: .github/build/two.spack.yaml.j2
131131
compiler: .github/build/compiler/gcc.spack.yaml
132-
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
132+
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
133133
with:
134134
spack-manifest-path: ${{ matrix.values.manifest }}
135135
spack-compiler-manifest-path: ${{ matrix.values.compiler }}
@@ -147,7 +147,7 @@ jobs:
147147
# This would be a combination of all defined manifest/compilers (eg, 4 jobs)
148148
manifest: [".github/build/one.spack.yaml.j2", ".github/build/two.spack.yaml.j2"]
149149
compiler: [".github/build/compiler/intel.spack.yaml", ".github/build/compiler/gcc.spack.yaml"]
150-
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
150+
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
151151
with:
152152
spack-manifest-path: ${{ matrix.values.manifest }}
153153
spack-compiler-manifest-path: ${{ matrix.values.compiler }}
@@ -177,7 +177,7 @@ The jinja data file (and the jinja-templatable spack manifest) can be much more
177177
Alternatively, you can supply a newline-separated list of space-separated template-value pairs through `inputs.spack-manifest-data-pairs`, which are more useful if you are supplying data to this workflow through `need`ed job outputs. For example:
178178

179179
```yaml
180-
uses: access-nri/build-ci/.github/workflows/ci.yml@v2
180+
uses: access-nri/build-ci/.github/workflows/ci.yml@v3
181181
with:
182182
spack-manifest-path: .github/build-ci/manifests/spack.yaml.j2
183183
spack-manifest-data-pairs: |-
@@ -232,7 +232,7 @@ jobs:
232232
file:
233233
- .github/build-ci/manifests/some.spack.yaml.j2
234234
- .github/build-ci/manifests/another.spack.yaml.j2
235-
uses: access-nri/build-ci/.github/workflows/ci.yaml@v2
235+
uses: access-nri/build-ci/.github/workflows/ci.yaml@v3
236236
with:
237237
spack-manifest-path: ${{ matrix.file }}
238238

.github/workflows/ci-github-hosted.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -230,14 +230,14 @@ jobs:
230230
231231
- name: Update - spack-config version
232232
id: spack-config-update
233-
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v2
233+
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v3
234234
with:
235235
repository-path: ${{ steps.env.outputs.SPACK_ROOT }}/../spack-config
236236
ref: ${{ inputs.spack-config-ref }}
237237

238238
- name: Update - spack version
239239
id: spack-update
240-
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v2
240+
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v3
241241
with:
242242
repository-path: ${{ steps.env.outputs.SPACK_ROOT }}
243243
ref: ${{ inputs.spack-ref }}
@@ -278,7 +278,7 @@ jobs:
278278
279279
- name: Update - builtin spack-package version
280280
id: builtin-spack-packages-update
281-
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v2
281+
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v3
282282
with:
283283
spack-packages-repository-name: builtin
284284
spack-packages-repository-path: ${{ steps.spack-packages-locations.outputs.builtin }}
@@ -287,7 +287,7 @@ jobs:
287287

288288
- name: Update - access-spack-package version
289289
id: access-spack-packages-update
290-
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v2
290+
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v3
291291
with:
292292
spack-packages-repository-name: access_spack_packages
293293
spack-packages-repository-path: ${{ steps.spack-packages-locations.outputs.access-spack-packages }}

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -236,14 +236,14 @@ jobs:
236236
237237
- name: Update - spack-config version
238238
id: spack-config-update
239-
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v2
239+
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v3
240240
with:
241241
repository-path: ${{ steps.env.outputs.SPACK_ROOT }}/../spack-config
242242
ref: ${{ inputs.spack-config-ref }}
243243

244244
- name: Update - spack version
245245
id: spack-update
246-
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v2
246+
uses: access-nri/build-ci/.github/actions/git-checkout-updated-ref@v3
247247
with:
248248
repository-path: ${{ steps.env.outputs.SPACK_ROOT }}
249249
ref: ${{ inputs.spack-ref }}
@@ -284,7 +284,7 @@ jobs:
284284
285285
- name: Update - builtin spack-package version
286286
id: builtin-spack-packages-update
287-
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v2
287+
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v3
288288
with:
289289
spack-packages-repository-name: builtin
290290
spack-packages-repository-path: ${{ steps.spack-packages-locations.outputs.builtin }}
@@ -293,7 +293,7 @@ jobs:
293293

294294
- name: Update - access-spack-package version
295295
id: access-spack-packages-update
296-
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v2
296+
uses: access-nri/build-ci/.github/actions/spack-checkout-updated-ref@v3
297297
with:
298298
spack-packages-repository-name: access_spack_packages
299299
spack-packages-repository-path: ${{ steps.spack-packages-locations.outputs.access-spack-packages }}

0 commit comments

Comments
 (0)