mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-09 19:45:13 +02:00
bumped dep
This commit is contained in:
parent
49fa174607
commit
214bf91b63
11 changed files with 1882 additions and 820 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -378,7 +378,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
- uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
|
|
|
|||
14
.github/workflows/eval.yml
vendored
14
.github/workflows/eval.yml
vendored
|
|
@ -75,14 +75,14 @@ jobs:
|
|||
# The Phase 22 Java compile pool drives `com.sun.tools.javac` out of a
|
||||
# warm JDK; temurin 21 ships the compiler module the pool loads.
|
||||
- name: Set up JDK 21
|
||||
uses: actions/setup-java@v4
|
||||
uses: actions/setup-java@v5
|
||||
with:
|
||||
distribution: temurin
|
||||
java-version: "21"
|
||||
|
||||
- name: Cache OWASP BenchmarkJava (1.2beta)
|
||||
id: cache-owasp
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: .eval-corpus/owasp_benchmark_v1.2
|
||||
key: owasp-benchmark-1.2beta
|
||||
|
|
@ -158,13 +158,13 @@ jobs:
|
|||
# The dynamic verifier's Node build pool (Phase 23) compiles its
|
||||
# harnesses with a real node/npm toolchain.
|
||||
- name: Set up Node 20
|
||||
uses: actions/setup-node@v4
|
||||
uses: actions/setup-node@v6
|
||||
with:
|
||||
node-version: "20"
|
||||
|
||||
- name: Cache ${{ matrix.corpus.name }}
|
||||
id: cache-corpus
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: .eval-corpus/${{ matrix.corpus.name }}
|
||||
key: jsts-${{ matrix.corpus.name }}-${{ matrix.corpus.ref }}
|
||||
|
|
@ -288,19 +288,19 @@ jobs:
|
|||
|
||||
- name: Set up Python
|
||||
if: matrix.corpus.lang == 'python'
|
||||
uses: actions/setup-python@v5
|
||||
uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: "3.12"
|
||||
|
||||
- name: Set up Go
|
||||
if: matrix.corpus.lang == 'go'
|
||||
uses: actions/setup-go@v5
|
||||
uses: actions/setup-go@v6
|
||||
with:
|
||||
go-version: "1.22"
|
||||
|
||||
- name: Cache ${{ matrix.corpus.name }}
|
||||
id: cache-corpus
|
||||
uses: actions/cache@v4
|
||||
uses: actions/cache@v5
|
||||
with:
|
||||
path: .eval-corpus/${{ matrix.corpus.name }}
|
||||
key: polyglot-${{ matrix.corpus.name }}-${{ matrix.corpus.ref }}
|
||||
|
|
|
|||
2
.github/workflows/fuzz.yml
vendored
2
.github/workflows/fuzz.yml
vendored
|
|
@ -194,7 +194,7 @@ jobs:
|
|||
working-directory: fuzz/dynamic_corpus
|
||||
run: cargo build
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
- uses: actions/setup-python@v6
|
||||
with:
|
||||
python-version: "3.x"
|
||||
|
||||
|
|
|
|||
2
.github/workflows/image-builder.yml
vendored
2
.github/workflows/image-builder.yml
vendored
|
|
@ -47,7 +47,7 @@ jobs:
|
|||
cargo run -F image-builder --bin nyx-image-builder -- verify
|
||||
|
||||
- name: Open PR on drift
|
||||
uses: peter-evans/create-pull-request@v7
|
||||
uses: peter-evans/create-pull-request@v8
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
commit-message: "image-builder: refresh pinned digests"
|
||||
|
|
|
|||
2
.github/workflows/release-build.yml
vendored
2
.github/workflows/release-build.yml
vendored
|
|
@ -245,7 +245,7 @@ jobs:
|
|||
# --certificate-oidc-issuer https://token.actions.githubusercontent.com \
|
||||
# <file>
|
||||
- name: Install cosign
|
||||
uses: sigstore/cosign-installer@v4.1.1
|
||||
uses: sigstore/cosign-installer@v4.1.2
|
||||
|
||||
- name: Cosign keyless sign release artifacts
|
||||
shell: bash
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue