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/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
fi

- name: Upload benchmark results
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: benchmark-results
path: bench/results/
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:

- name: Upload build artifacts
if: matrix.os == 'ubuntu-latest'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ananke-${{ runner.os }}-${{ matrix.zig-version }}
path: |
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
# version: '0.15.2'
# - run: brew install tree-sitter
# - run: zig build -Doptimize=ReleaseSafe
# - uses: actions/upload-artifact@v4
# - uses: actions/upload-artifact@v6
# with:
# name: ananke-x86_64-macos
# path: zig-out/bin/*
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:

- name: Upload Rust security report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: rust-security-report
path: rust-security-report.md
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:

- name: Upload Zig security report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: zig-security-report
path: zig-security-report.md
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:

- name: Upload secret scan report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: secret-scan-report
path: secret-scan-report.md
Expand Down Expand Up @@ -323,7 +323,7 @@ jobs:

- name: Upload license report
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: license-report
path: license-report.md
Expand Down Expand Up @@ -387,7 +387,7 @@ jobs:
echo "5. Document security decisions" >> SECURITY_SUMMARY.md

- name: Upload security summary
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: security-summary
path: SECURITY_SUMMARY.md
Expand Down
Loading