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
2 changes: 1 addition & 1 deletion .github/workflows/base-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .base/base-cli

- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/base-demo-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Check out base-bash-libs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Set up Python ${{ matrix.python-version }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Set up Python
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Expose standalone Python package checkout as sibling
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Expose standalone Python package checkout as sibling
Expand Down Expand Up @@ -221,7 +221,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Expose standalone Python package checkout as sibling
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Expose reusable Bash library checkout as sibling
Expand Down Expand Up @@ -347,7 +347,7 @@ jobs:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5
with:
repository: basefoundry/base-cli
ref: v0.4.2
ref: v0.4.3
path: .dependencies/base-cli

- name: Set up Python
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ numeric next development line is tracked in `DEVELOPMENT_VERSION`.

### Changed

- Align development dependencies and source-checkout CI workflows with the
released `base-cli` `0.4.3` provider.

- Documented stable release versus contributor source installation and made
mutable source checkouts report the next development line with their Git
revision instead of reusing the latest published version identity.
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
pylint==3.3.9
click==8.4.1
base-cli==0.4.2
base-cli==0.4.3
PyYAML==6.0.3
pytest==9.0.3
pytest-cov==7.1.0
Expand Down
2 changes: 1 addition & 1 deletion tests/test_github_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,7 @@ def test_base_demo_e2e_workflow_covers_the_external_project_loop() -> None:
"basefoundry/base-bash-libs",
]
assert "b4243765726c133499feeabdc50154f99c0fec12" in str(steps)
assert "v0.4.2" in str(steps)
assert "v0.4.3" in str(steps)

for command in (
"basectl setup --ci base-demo",
Expand Down
Loading