Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/actions/check-android/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,14 @@ runs:
WD: ${{ inputs.working-directory }}
run: cd "$WD" && sdkmanager --install "ndk;$NDK_VERSION"

- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: stable
targets: ${{ inputs.target }}
tools: cargo-ndk@^4
token: ${{ inputs.github-token }}

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
if: ${{ inputs.minimum-nss-version != '' }}
with:
minimum-version: ${{ inputs.minimum-nss-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
actionlint:
uses: mozilla/actions/.github/workflows/actionlint.yml@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/.github/workflows/actionlint.yml@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
permissions:
contents: read
security-events: write # Required for zizmor to upload SARIF results.
8 changes: 4 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
persist-credentials: false

- id: toolchains
uses: mozilla/actions/toolchains@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/toolchains@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
Comment thread
larseggert marked this conversation as resolved.

check:
name: Run checks
Expand Down Expand Up @@ -79,14 +79,14 @@ jobs:
with:
persist-credentials: false

- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: ${{ matrix.rust-toolchain }}
components: ${{ matrix.rust-toolchain == 'stable' && 'llvm-tools' || '' }} ${{ matrix.rust-toolchain == 'nightly' && startsWith(matrix.os, 'ubuntu') && !endsWith(matrix.os, 'arm') && 'rust-src ' || '' }}
tools: ${{ matrix.rust-toolchain == 'stable' && 'cargo-llvm-cov' || '' }} ${{ matrix.rust-toolchain == 'nightly' && startsWith(matrix.os, 'ubuntu') && !endsWith(matrix.os, 'arm') && 'cargo-careful ' || '' }}
token: ${{ secrets.GITHUB_TOKEN }}

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version-file: min_version.txt
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: stable
tools: cargo-hack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ permissions:

jobs:
claude-review:
uses: mozilla/actions/.github/workflows/claude-review.yml@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/.github/workflows/claude-review.yml@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
permissions:
contents: read
pull-requests: write # Required to post review comments.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
persist-credentials: false

- id: toolchains
uses: mozilla/actions/toolchains@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/toolchains@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3

clippy:
name: cargo clippy
Expand All @@ -43,14 +43,14 @@ jobs:
with:
persist-credentials: false

- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: ${{ matrix.rust-toolchain }}
components: clippy
tools: cargo-hack
token: ${{ secrets.GITHUB_TOKEN }}

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version-file: min_version.txt
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ permissions:

jobs:
deny:
uses: mozilla/actions/.github/workflows/deny.yml@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/.github/workflows/deny.yml@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ permissions:

jobs:
dependency-review:
uses: mozilla/actions/.github/workflows/dependency-review.yml@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/.github/workflows/dependency-review.yml@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
2 changes: 1 addition & 1 deletion .github/workflows/machete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ permissions:

jobs:
machete:
uses: mozilla/actions/.github/workflows/machete.yml@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/.github/workflows/machete.yml@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
8 changes: 4 additions & 4 deletions .github/workflows/mutants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ jobs:
with:
persist-credentials: false

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version-file: min_version.txt
token: ${{ secrets.GITHUB_TOKEN }}

- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: nightly
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -64,12 +64,12 @@ jobs:
with:
persist-credentials: false

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version-file: neqo-crypto/min_version.txt
token: ${{ secrets.GITHUB_TOKEN }}

- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: nightly
tools: cargo-mutants
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rustfmt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ permissions:

jobs:
format:
uses: mozilla/actions/.github/workflows/rustfmt.yml@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
uses: mozilla/actions/.github/workflows/rustfmt.yml@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
4 changes: 2 additions & 2 deletions .github/workflows/sanitize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ jobs:
with:
persist-credentials: false

- uses: mozilla/actions/rust@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/rust@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version: nightly
components: rust-src
tools: cargo-hack
token: ${{ secrets.GITHUB_TOKEN }}

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version-file: min_version.txt
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@ jobs:
fi
echo "ref=$TAG" >> "$GITHUB_OUTPUT"

- uses: mozilla/actions/nss@25cb84d060946c0ad6d2c3f79da479b16d180d71 # v1.1.0
- uses: mozilla/actions/nss@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
version-file: min_version.txt
token: ${{ secrets.GITHUB_TOKEN }}

- uses: mozilla/actions/semver@a832d8ca9b69e2c0f166d430a40d8d2affceb075 # v1.1.2
- uses: mozilla/actions/semver@27cbe8fb5d338c2861b787e5de10410559065db1 # v1.1.3
with:
base-ref: ${{ steps.tag.outputs.ref }}
Loading