Skip to content

Commit d339d37

Browse files
committed
Replace all internal refs with v6
1 parent 8a072b2 commit d339d37

8 files changed

Lines changed: 20 additions & 20 deletions

File tree

.github/workflows/cd.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
7171
- name: Generate Deployment Target Matrix
7272
id: target
73-
uses: access-nri/build-cd/.github/actions/get-target-matrix@v5
73+
uses: access-nri/build-cd/.github/actions/get-target-matrix@v6
7474
with:
7575
targets: ${{ vars.RELEASE_DEPLOYMENT_TARGETS }}
7676

@@ -87,7 +87,7 @@ jobs:
8787
with:
8888
repository: access-nri/build-cd
8989

90-
- uses: access-nri/build-cd/.github/actions/validate-deployment-settings@v5
90+
- uses: access-nri/build-cd/.github/actions/validate-deployment-settings@v6
9191
with:
9292
settings-path: ./config/settings.json
9393
target: ${{ matrix.target }}
@@ -105,7 +105,7 @@ jobs:
105105

106106
- name: Get root spec ref
107107
id: tag
108-
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v5
108+
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v6
109109
with:
110110
spack-manifest-path: ${{ inputs.spack-manifest-path }}
111111

@@ -159,7 +159,7 @@ jobs:
159159
strategy:
160160
matrix:
161161
target: ${{ fromJson(needs.defaults.outputs.targets) }}
162-
uses: access-nri/build-cd/.github/workflows/deploy-1-setup.yml@v5
162+
uses: access-nri/build-cd/.github/workflows/deploy-1-setup.yml@v6
163163
with:
164164
deployment-target: ${{ matrix.target }}
165165
deployment-ref: ${{ github.ref_name }}

.github/workflows/ci-closed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Generate Deployment Target Matrix
4040
id: target
41-
uses: access-nri/build-cd/.github/actions/get-target-matrix@v5
41+
uses: access-nri/build-cd/.github/actions/get-target-matrix@v6
4242
with:
4343
targets: ${{ vars.PRERELEASE_DEPLOYMENT_TARGETS }}
4444

@@ -50,7 +50,7 @@ jobs:
5050
matrix:
5151
target: ${{ fromJson(needs.setup.outputs.targets) }}
5252
fail-fast: false
53-
uses: access-nri/build-cd/.github/workflows/undeploy-1-start.yml@v5
53+
uses: access-nri/build-cd/.github/workflows/undeploy-1-start.yml@v6
5454
with:
5555
version-pattern: ${{ inputs.root-sbd }}-pr${{ github.event.pull_request.number }}-*
5656
target: ${{ matrix.target }}

.github/workflows/ci-comment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373

7474
- name: Original version
7575
id: original
76-
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v5
76+
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v6
7777

7878
- name: Setup
7979
id: setup

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ jobs:
132132
133133
- name: Generate Deployment Target Matrix
134134
id: target
135-
uses: access-nri/build-cd/.github/actions/get-target-matrix@v5
135+
uses: access-nri/build-cd/.github/actions/get-target-matrix@v6
136136
with:
137137
targets: ${{ vars.PRERELEASE_DEPLOYMENT_TARGETS }}
138138

@@ -196,7 +196,7 @@ jobs:
196196
matrix:
197197
# Example: ['Gadi', 'Setonix', ...]
198198
target: ${{ fromJson(needs.defaults.outputs.targets) }}
199-
uses: access-nri/build-cd/.github/workflows/deploy-1-setup.yml@v5
199+
uses: access-nri/build-cd/.github/workflows/deploy-1-setup.yml@v6
200200
with:
201201
deployment-target: ${{ matrix.target }}
202202
deployment-ref: ${{ needs.defaults.outputs.head-ref }}

.github/workflows/deploy-1-setup.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,14 +157,14 @@ jobs:
157157

158158
- name: Validate spack-packages version
159159
id: spack-packages
160-
uses: access-nri/build-cd/.github/actions/validate-repo-version@v5
160+
uses: access-nri/build-cd/.github/actions/validate-repo-version@v6
161161
with:
162162
repo-to-check: spack-packages
163163
pr: ${{ inputs.deployment-ref }}
164164

165165
- name: Validate spack version
166166
id: spack
167-
uses: access-nri/build-cd/.github/actions/validate-repo-version@v5
167+
uses: access-nri/build-cd/.github/actions/validate-repo-version@v6
168168
with:
169169
repo-to-check: spack
170170
pr: ${{ inputs.deployment-ref }}
@@ -195,7 +195,7 @@ jobs:
195195
196196
- name: Validate build-cd config/settings.json
197197
id: settings
198-
uses: access-nri/build-cd/.github/actions/validate-deployment-settings@v5
198+
uses: access-nri/build-cd/.github/actions/validate-deployment-settings@v6
199199
with:
200200
settings-path: ./cd/config/settings.json
201201
target: ${{ inputs.deployment-target }}
@@ -230,7 +230,7 @@ jobs:
230230

231231
- name: Get current (${{ inputs.deployment-ref }}) root spec version
232232
id: current
233-
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v5
233+
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v6
234234
with:
235235
spack-manifest-path: ${{ inputs.spack-manifest-path }}
236236

@@ -269,7 +269,7 @@ jobs:
269269
- name: Get base root spec version
270270
id: base
271271
if: inputs.deployment-type != 'Release' && steps.checkout-base-spack.outcome != 'failure'
272-
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v5
272+
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v6
273273
with:
274274
spack-manifest-path: ${{ inputs.spack-manifest-path }}
275275

@@ -310,7 +310,7 @@ jobs:
310310
needs:
311311
- check-config # Verify configuration information is correct
312312
- check-spack-yaml # Verify spack manifest information is correct
313-
uses: access-nri/build-cd/.github/workflows/deploy-2-start.yml@v5
313+
uses: access-nri/build-cd/.github/workflows/deploy-2-start.yml@v6
314314
with:
315315
ref: ${{ inputs.deployment-ref }}
316316
version: ${{ inputs.deployment-version }}

.github/workflows/deploy-2-start.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
8888
- name: Get ${{ inputs.deployment-target }} ${{ inputs.deployment-type }} Remote Paths
8989
id: path
90-
uses: access-nri/build-cd/.github/actions/get-deploy-paths@v5
90+
uses: access-nri/build-cd/.github/actions/get-deploy-paths@v6
9191
with:
9292
spack-installs-root-path: ${{ vars.SPACK_INSTALLS_ROOT_LOCATION }}
9393
spack-version: ${{ steps.versions.outputs.spack }}
@@ -96,7 +96,7 @@ jobs:
9696

9797
- name: Get manifest info
9898
id: manifest
99-
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v5
99+
uses: access-nri/build-cd/.github/actions/get-spack-root-spec@v6
100100
with:
101101
spack-manifest-path: ${{ inputs.spack-manifest-path }}
102102

.github/workflows/settings-1-update.yml

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

5454
- name: Validate Deployment Settings
5555
id: validate
56-
uses: access-nri/build-cd/.github/actions/validate-deployment-settings@v5
56+
uses: access-nri/build-cd/.github/actions/validate-deployment-settings@v6
5757
with:
5858
settings-path: ${{ env.CONFIG_SETTINGS_PATH }}
5959
target: ${{ matrix.target }}
@@ -146,7 +146,7 @@ jobs:
146146
# - deployment-environment: Gadi
147147
# type: Prerelease
148148
# etc ...
149-
uses: access-nri/build-cd/.github/workflows/settings-2-deploy.yml@v5
149+
uses: access-nri/build-cd/.github/workflows/settings-2-deploy.yml@v6
150150
with:
151151
deployment-environment: ${{ matrix.update.deployment-environment }}
152152
spack-type: ${{ matrix.update.type }}

.github/workflows/undeploy-1-start.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Get ${{ inputs.target }} Remote Paths
5050
id: path
51-
uses: access-nri/build-cd/.github/actions/get-deploy-paths@v5
51+
uses: access-nri/build-cd/.github/actions/get-deploy-paths@v6
5252
with:
5353
spack-installs-root-path: ${{ vars.SPACK_INSTALLS_ROOT_LOCATION }}
5454
spack-version: ${{ steps.versions.outputs.spack }}

0 commit comments

Comments
 (0)