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
45 changes: 12 additions & 33 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,34 @@
version: 2
updates:
- package-ecosystem: cargo
directory: "/"
directories:
- "/"
- "/tools/apps"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: env_logger
versions:
- ">= 0.7.a, < 0.8"
- dependency-name: mio
versions:
- ">= 0.7.a, < 0.8"
- dependency-name: ring
versions:
- ">= 0.15.a, < 0.16"
- dependency-name: ring
versions:
- ">= 0.16.a, < 0.17"
- dependency-name: url
versions:
- ">= 2.a, < 3"
- package-ecosystem: cargo
directory: "/tools/apps"
directories:
- "/tools/qlog"
- "/fuzz"
schedule:
interval: daily
time: "13:00"
open-pull-requests-limit: 10
ignore:
- dependency-name: env_logger
versions:
- ">= 0.7.a, < 0.8"
- dependency-name: env_logger
versions:
- ">= 0.8.a, < 0.9"
- dependency-name: mio
versions:
- ">= 0.7.a, < 0.8"
- dependency-name: url
versions:
- ">= 2.a, < 3"
- package-ecosystem: cargo
directory: "/tools/qlog"
- package-ecosystem: github-actions
directory: "/"
schedule:
interval: daily
interval: weekly
time: "13:00"
open-pull-requests-limit: 10
- package-ecosystem: cargo
directory: "/fuzz"
- package-ecosystem: gitsubmodule
directory: "/"
schedule:
interval: daily
interval: weekly
time: "13:00"
open-pull-requests-limit: 10
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -24,7 +24,7 @@ jobs:
run: cargo doc --no-deps --all-features

- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v3
uses: crazy-max/ghaction-github-pages@v4
with:
target_branch: gh-pages
build_dir: target/doc
Expand All @@ -36,15 +36,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

- name: Build Docker images
run: make docker-build

- name: Login to DockerHub
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand Down Expand Up @@ -63,7 +63,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -110,7 +110,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semgrep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ jobs:
container:
image: semgrep/semgrep
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- run: semgrep ci
28 changes: 15 additions & 13 deletions .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -47,7 +47,9 @@ jobs:
- name: Build OpenSSL
if: ${{ matrix.tls-feature == 'openssl' }}
run: |
git clone https://github.com/quictls/openssl
# TODO openssl has been archived, move to new project: https://github.com/quictls/quictls
# Attention: Default branch is 3.1.7, not 3.3.0. Latest tag was openssl-3.3.0-quic1
git clone --depth 1 https://github.com/quictls/openssl
cd openssl
./Configure --prefix="$PWD/install"
make -j"$(nproc)"
Expand Down Expand Up @@ -113,7 +115,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand Down Expand Up @@ -142,7 +144,7 @@ jobs:
IPHONEOS_DEPLOYMENT_TARGET: "10.0"
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -169,7 +171,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -181,16 +183,16 @@ jobs:

- name: Set up MinGW for 64 bit
if: matrix.target == 'x86_64-pc-windows-gnu'
uses: bwoodsend/setup-winlibs-action@v1.10
uses: bwoodsend/setup-winlibs-action@v1.16
with:
tag: 12.2.0-16.0.0-10.0.0-msvcrt-r5
tag: 15.1.0posix-13.0.0-msvcrt-r2

- name: Set up MinGW for 32 bit
if: matrix.target == 'i686-pc-windows-gnu'
uses: bwoodsend/setup-winlibs-action@v1.10
uses: bwoodsend/setup-winlibs-action@v1.16
with:
architecture: i686
tag: 12.2.0-16.0.0-10.0.0-msvcrt-r5
tag: 15.1.0posix-13.0.0-msvcrt-r2

- name: Install dependencies
uses: crazy-max/ghaction-chocolatey@v3
Expand All @@ -215,7 +217,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -240,7 +242,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand All @@ -263,7 +265,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand Down Expand Up @@ -291,7 +293,7 @@ jobs:
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
- name: Checkout sources
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'recursive'

Expand Down