Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/template-smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
id: render
shell: pwsh
run: |
& ./tests/Test-TemplateSmokeRender.ps1 -ExecutionProfile '${{ matrix.execution_profile }}' -CompareViPin 'v0.6.4-rc.2'
& ./tests/Test-TemplateSmokeRender.ps1 -ExecutionProfile '${{ matrix.execution_profile }}' -CompareViPin 'v0.6.3'

- name: Upload rendered sample
uses: actions/upload-artifact@v4
Expand All @@ -50,7 +50,7 @@ jobs:

- id: comparevi
name: CompareVI consumer smoke
uses: LabVIEW-Community-CI-CD/compare-vi-cli-action@v0.6.4-rc.2
uses: LabVIEW-Community-CI-CD/compare-vi-cli-action@v0.6.3
with:
base: tests/fixtures/comparevi/placeholder.vi
head: tests/fixtures/comparevi/placeholder.vi
Expand All @@ -69,7 +69,7 @@ jobs:
@(
'### CompareVI consumer smoke',
'',
'- pinned_ref: `LabVIEW-Community-CI-CD/compare-vi-cli-action@v0.6.4-rc.2`',
'- pinned_ref: `LabVIEW-Community-CI-CD/compare-vi-cli-action@v0.6.3`',
('- runner_os: `{0}`' -f $env:RUNNER_OS),
('- shortCircuitedIdentical: `{0}`' -f '${{ steps.comparevi.outputs.shortCircuitedIdentical }}'),
('- diff: `{0}`' -f '${{ steps.comparevi.outputs.diff }}')
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ cookiecutter https://github.com/LabVIEW-Community-CI-CD/LabviewGitHubCiTemplate.
repo_slug="labview-hosted-ci-sample"
github_owner="LabVIEW-Community-CI-CD"
execution_profile="hosted"
comparevi_tools_consumer_pin="v0.6.4-rc.2"
comparevi_tools_consumer_pin="v0.6.3"
enable_vi_history_capability="yes"
```

Expand Down
2 changes: 1 addition & 1 deletion cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"docker",
"mixed"
],
"comparevi_tools_consumer_pin": "v0.6.4-rc.2",
"comparevi_tools_consumer_pin": "v0.6.3",
"enable_vi_history_capability": [
"yes",
"no"
Expand Down
2 changes: 1 addition & 1 deletion docs/VI_HISTORY_CAPABILITY_DISTRIBUTION.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ records the Producer-published Docker capability contract pointer:

## Current Pin

The default upstream consumer pin is `v0.6.4-rc.2`.
The default upstream consumer pin is `v0.6.3`.

That pin is intentionally stored in the template prompt surface so future
template revisions can advance the pin without forcing downstream repos to copy
Expand Down
2 changes: 1 addition & 1 deletion tests/Test-TemplateSmokeRender.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ param(
[string]$ExecutionProfile,

[Parameter()]
[string]$CompareViPin = 'v0.6.4-rc.2'
[string]$CompareViPin = 'v0.6.3'
)

Set-StrictMode -Version Latest
Expand Down
3 changes: 2 additions & 1 deletion {{ cookiecutter.repo_slug }}/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,6 @@ capability contract in `.github/comparevi/capabilities.json`.
- canonical receipt schema source: `LabVIEW-Community-CI-CD/LabviewGitHubCiTemplate/docs/schemas/labview-template-docker-profile-plan-v1.schema.json`

Use a `comparevi_tools_consumer_pin` that publishes the Docker-profile
capability contract, such as `v0.6.4-rc.2` or later.
capability contract, such as `v0.6.3` or a later supported stable `v0.6.x`
release.
{% endif %}
Loading