Skip to content

Commit c9ffc05

Browse files
Pigbibicodex
andcommitted
ci: update artifact actions to v7
Co-Authored-By: Codex <noreply@openai.com>
1 parent a4b60ad commit c9ffc05

6 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/drift-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
PY
182182
183183
- name: Upload lifecycle preflight artifact
184-
uses: actions/upload-artifact@v6
184+
uses: actions/upload-artifact@v7
185185
with:
186186
name: lifecycle-preflight-${{ github.run_id }}-${{ github.run_attempt }}
187187
path: ${{ runner.temp }}/lifecycle-preflight-bundle
@@ -194,7 +194,7 @@ jobs:
194194
contents: read
195195
issues: write
196196
id-token: write
197-
uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@b939522701b527096e5d028346e777714466bcc5
197+
uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@8b8ce3543c04bf12920e38b0f45d2b32a8896580
198198
with:
199199
strategy_domain: us_equity
200200
caller_event_name: ${{ github.event_name }}
@@ -203,7 +203,7 @@ jobs:
203203
snapshot_checkout_path: external/UsEquitySnapshotPipelines
204204
snapshot_repository_ref: ${{ needs.preflight_backtests.outputs.snapshot_repository_ref }}
205205
ai_gateway_service_url: ${{ vars.AI_GATEWAY_SERVICE_URL }}
206-
quant_platform_kit_ref: b939522701b527096e5d028346e777714466bcc5
206+
quant_platform_kit_ref: 8b8ce3543c04bf12920e38b0f45d2b32a8896580
207207
lifecycle_preflight_artifact: lifecycle-preflight-${{ github.run_id }}-${{ github.run_attempt }}
208208
secrets:
209209
codex_audit_service_url: ${{ secrets.CODEX_AUDIT_SERVICE_URL }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ requires-python = ">=3.11"
1111
dependencies = [
1212
"pandas>=2.0",
1313
"pytz>=2024.1",
14-
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@b939522701b527096e5d028346e777714466bcc5",
14+
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@8b8ce3543c04bf12920e38b0f45d2b32a8896580",
1515
]
1616

1717
[tool.setuptools]

qsl.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ bundle = "2026.08.0"
66
requires = [
77
"pandas>=2.0",
88
"pytz>=2024.1",
9-
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@b939522701b527096e5d028346e777714466bcc5",
9+
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/QuantPlatformKit.git@8b8ce3543c04bf12920e38b0f45d2b32a8896580",
1010
]

tests/test_drift_workflow_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,23 +21,23 @@ def test_drift_workflow_wires_real_snapshot_history_and_preflight_bundle() -> No
2121
assert '"conclusion": "success"' in workflow
2222
assert '"QuantStrategyLab/UsEquitySnapshotPipelines"' in workflow
2323
assert "repository: QuantStrategyLab/QuantPlatformKit" in workflow
24-
assert "ref: b939522701b527096e5d028346e777714466bcc5" in workflow
24+
assert "ref: 8b8ce3543c04bf12920e38b0f45d2b32a8896580" in workflow
2525
assert "python -m pip install --no-deps -e external/QuantPlatformKit" in workflow
2626
assert "scripts/run_walk_forward_backtest.py" in workflow
2727
assert '"--list-lifecycle-profiles"' in workflow
2828
assert "--market-history" in workflow
2929
assert "--returns-output" in workflow
3030
assert "LIFECYCLE_PREFLIGHT_BUNDLE_ROOT" in workflow
3131
assert "Upload lifecycle preflight artifact" in workflow
32-
assert "actions/upload-artifact@v6" in workflow
33-
assert "uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@b939522701b527096e5d028346e777714466bcc5" in workflow
32+
assert "actions/upload-artifact@v7" in workflow
33+
assert "uses: QuantStrategyLab/QuantPlatformKit/.github/workflows/reusable-drift-check.yml@8b8ce3543c04bf12920e38b0f45d2b32a8896580" in workflow
3434
assert "strategy_domain: us_equity" in workflow
3535
assert "caller_event_name: ${{ github.event_name }}" in workflow
3636
assert "caller_pr_head_repository: ${{ github.event.pull_request.head.repo.full_name || '' }}" in workflow
3737
assert "snapshot_repository: QuantStrategyLab/UsEquitySnapshotPipelines" in workflow
3838
assert "snapshot_checkout_path: external/UsEquitySnapshotPipelines" in workflow
3939
assert "ai_gateway_service_url: ${{ vars.AI_GATEWAY_SERVICE_URL }}" in workflow
4040
assert "lifecycle_preflight_artifact: lifecycle-preflight-${{ github.run_id }}-${{ github.run_attempt }}" in workflow
41-
assert "quant_platform_kit_ref: b939522701b527096e5d028346e777714466bcc5" in workflow
41+
assert "quant_platform_kit_ref: 8b8ce3543c04bf12920e38b0f45d2b32a8896580" in workflow
4242
assert "codex_audit_service_url: ${{ secrets.CODEX_AUDIT_SERVICE_URL }}" in workflow
4343
assert "secrets.SNAPSHOT_REPOSITORY_TOKEN || secrets.QSL_REPO_SYNC_TOKEN || github.token" in workflow

tests/test_qsl_compat_metadata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44

55
ROOT = Path(__file__).resolve().parents[1]
6-
QPK_REVISION = "b939522701b527096e5d028346e777714466bcc5"
6+
QPK_REVISION = "8b8ce3543c04bf12920e38b0f45d2b32a8896580"
77
QPK_URL = (
88
"quant-platform-kit @ git+https://github.com/QuantStrategyLab/"
99
f"QuantPlatformKit.git@{QPK_REVISION}"

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)