From 7d3b1fea6bead53946c411b170651a1f88c6d42e Mon Sep 17 00:00:00 2001 From: Christian Mehlmauer Date: Mon, 17 Feb 2020 06:32:18 +0100 Subject: [PATCH] ruby-head not supported --- .github/workflows/ruby.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 22b1a254..1ad2a332 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -9,7 +9,7 @@ jobs: strategy: matrix: - ruby: [2.4, 2.5, 2.6, 2.7, ruby-head] + ruby: [2.4, 2.5, 2.6, 2.7] steps: - uses: actions/checkout@v1 @@ -23,9 +23,9 @@ jobs: uses: actions/cache@v1 with: path: vendor/bundle - key: ${{ runner.os }}-gem-${{ hashFiles('**/wpscan.gemspec') }} + key: ${{ runner.os }}-${{ matrix.ruby }}-gem-${{ hashFiles('**/wpscan.gemspec') }} restore-keys: | - ${{ runner.os }}-gem- + ${{ runner.os }}-${{ matrix.ruby }}-gem- - name: Build and test run: |