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
8 changes: 4 additions & 4 deletions .github/workflows/bench-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -718,7 +718,7 @@ jobs:

- name: Upload table
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: table-${{ env.LABEL }}
path: out/table-${{ env.LABEL }}.md
Expand Down Expand Up @@ -764,7 +764,7 @@ jobs:
build: false
use-github-cache: false
- name: Download tables
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: tables
pattern: table-*
Expand All @@ -780,7 +780,7 @@ jobs:
--head "$HEAD_SHA" \
--repo-url "${{ github.server_url }}/${{ github.repository }}" \
--run-id "${{ github.run_id }}" --out comment-body.md
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: comment-body
path: comment-body.md
Expand All @@ -798,7 +798,7 @@ jobs:
- name: Download comment body
if: needs.assemble.result == 'success'
continue-on-error: true
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: comment-body
# A failed stage prepends a warning header to the report (quoting
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bencher-plots.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
auto-config: false
build: false
use-github-cache: false
- uses: bencherdev/bencher@v0.6.8
- uses: bencherdev/bencher@v0.6.11
# Plot create/delete needs those permissions on the ix project: a
# user-scoped `bencher_user_*` key (the report-upload token the bench
# workflows use may be run-scoped and unable to manage plots).
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Compile nataddcomm.ixe
run: lake exe ix compile Ix.lean --consts Nat.add_comm --out nataddcomm.ixe
- name: Upload nataddcomm.ixe
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: nataddcomm-ixe
path: nataddcomm.ixe
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
# ELF embed accordingly, so this lints host code only.
cargo clippy --release --workspace --all-targets -- -D warnings
- name: Download nataddcomm.ixe
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: nataddcomm-ixe
path: .
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
# ELFs its build scripts already produced).
cargo clippy --release --workspace --all-targets -- -D warnings
- name: Download nataddcomm.ixe
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: nataddcomm-ixe
path: .
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
# paths-filter diffs the PR via the API on pull_request events, but
# needs a checkout to resolve the pushed commit range on push events.
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: dorny/paths-filter@v4
Expand All @@ -60,14 +60,14 @@ jobs:
security-events: write
packages: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: github/codeql-action/init@v4
- uses: github/codeql-action/init@v4.37.4
with:
languages: actions
build-mode: none
- uses: github/codeql-action/analyze@v4
- uses: github/codeql-action/analyze@v4.37.4
with:
category: "/language:actions"

Expand All @@ -81,14 +81,14 @@ jobs:
security-events: write
packages: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
persist-credentials: false
- uses: github/codeql-action/init@v4
- uses: github/codeql-action/init@v4.37.4
with:
languages: rust
build-mode: none
dependency-caching: true
- uses: github/codeql-action/analyze@v4
- uses: github/codeql-action/analyze@v4.37.4
with:
category: "/language:rust"