Skip to content
Open
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/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: PYTHONPATH=python python3 -m cos bench --mock --suite truthfulqa,triviaqa,mmlu --output-dir benchmarks/results_ci
- name: σ-bench CI (regression vs previous)
run: PYTHONPATH=python python3 -m cos bench --ci --mock --suite truthfulqa,triviaqa,mmlu --output-dir benchmarks/results_ci
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: bench-receipts
path: benchmarks/results_ci/
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Generate sbom/creation-os.cdx.json (reproducible + dev extra)
run: bash scripts/sbom/generate_creation_os_cdx.sh
- name: Upload SBOM artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: sbom
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: pip install --upgrade pip build
- name: Build
run: python -m build
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi-semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:

- name: Upload sdist and wheel
if: steps.psr.outputs.released == 'true'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: python-dist
path: dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version: "3.11"
- run: pip install build
- run: python -m build
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: dist
path: dist/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: |
cd dist
tar czf ../creation-os-${GITHUB_REF_NAME}-macos-universal.tar.gz cos creation_os_server creation_os
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: creation-os-macos-universal
path: creation-os-*-macos-universal.tar.gz
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
run: |
cd dist
tar czf ../creation-os-${GITHUB_REF_NAME}-linux-${{ matrix.arch }}.tar.gz cos creation_os_server creation_os
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: creation-os-linux-${{ matrix.arch }}
path: creation-os-*-linux-*.tar.gz
Expand All @@ -99,7 +99,7 @@ jobs:
run: |
cd dist
tar czf ../creation-os-${GITHUB_REF_NAME}-linux-cos-amd64.tar.gz cos cos-demo
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: creation-os-linux-cos-amd64
path: creation-os-*-linux-cos-amd64.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
results_format: sarif
publish_results: true

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: scorecard-sarif
path: results.sarif
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: make sbom
run: make sbom
- name: upload SBOM artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: creation-os-sbom
path: SBOM.json
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/slsa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
sha=$(sha256sum creation_os_v61_hardened | awk '{print $1}')
echo "digest=$sha" >> "$GITHUB_OUTPUT"
echo "sha256: $sha"
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: creation_os_v61_hardened
path: creation_os_v61_hardened
Expand Down
Loading