.github/workflows/ci.yml in mini_portile2-2.8.1 vs .github/workflows/ci.yml in mini_portile2-2.8.2

- old
+ new

@@ -23,19 +23,19 @@ MAKEFLAGS: -j2 strategy: fail-fast: false matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "head"] + ruby: ["2.3", "2.4", "2.5", "2.6", "2.7", "3.0", "3.1", "3.2", "head"] runs-on: ${{ matrix.platform }} steps: - name: configure git crlf on windows if: matrix.platform == 'windows-latest' run: | git config --system core.autocrlf false git config --system core.eol lf - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: MSP-Greg/setup-ruby-pkgs@v1 with: apt-get: _update_ build-essential cmake mingw: _upgrade_ cmake ruby-version: ${{ matrix.ruby }} @@ -55,17 +55,17 @@ - name: configure git crlf on windows if: matrix.platform == 'windows-latest' run: | git config --system core.autocrlf false git config --system core.eol lf - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: MSP-Greg/setup-ruby-pkgs@v1 with: apt-get: _update_ build-essential cmake mingw: _upgrade_ cmake ruby-version: ${{ matrix.ruby }} bundler-cache: true - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: examples/ports/archives key: ${{ matrix.platform }}-examples-${{ hashFiles('examples/Rakefile') }} - run: bundle exec rake test:examples