From 8e28d04b11a2a6d5a0c9acfed94aa61eb74f1d5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Barri=C3=A9?= Date: Fri, 17 Jan 2025 16:20:21 +0100 Subject: [PATCH 1/2] Use netcat-openbsd --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c8b263d5..98ff92e3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,7 +42,7 @@ jobs: bundler-cache: true - name: Install packages - run: sudo apt-get install -y ragel socat netcat + run: sudo apt-get install -y ragel socat netcat-openbsd - name: Tests Rack ${{ matrix.rack }} ${{ matrix.rubyopt }} run: bundle exec rake From 63be41485b6c8117262032fbca7a6ede7b9670c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89tienne=20Barri=C3=A9?= Date: Wed, 29 Jan 2025 12:33:53 +0100 Subject: [PATCH 2/2] wip --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 98ff92e3..93035275 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,6 @@ jobs: strategy: fail-fast: false matrix: - os: ["ubuntu-latest"] ruby: ["ruby-head", "3.3", "3.2", "3.1", "3.0", "2.7", "2.6"] rubyopt: [""] rack: ["~> 3.1"] @@ -30,7 +29,7 @@ jobs: env: RACK_VERSION: "${{ matrix.rack }}" RUBYOPT: "${{ matrix.rubyopt }}" - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Check out code uses: actions/checkout@v4