.github/workflows/ruby-tests.yml in email_data-1618359706.0.0 vs .github/workflows/ruby-tests.yml in email_data-1626309470.0.0
- old
+ new
@@ -14,11 +14,11 @@
name: Tests with Ruby ${{ matrix.ruby }}
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
- ruby: ["2.7.x", "2.6.x"]
+ ruby: ["3.0.x", "2.7.x"]
services:
postgres:
image: postgres:11.5
ports: ["5432:5432"]
@@ -27,21 +27,21 @@
--health-retries 5
steps:
- uses: actions/checkout@v2.3.4
- - uses: actions/cache@v2
+ - uses: actions/cache@v2.1.6
with:
path: vendor/bundle
key: >
${{ runner.os }}-${{ matrix.ruby }}-gems-${{
hashFiles('**/Gemfile.lock') }}
restore-keys: >
${{ runner.os }}-${{ matrix.ruby }}-gems-${{
hashFiles('**/Gemfile.lock') }}
- name: Set up Ruby
- uses: actions/setup-ruby@v1
+ uses: actions/setup-ruby@v1.1.3
with:
ruby-version: ${{ matrix.ruby }}
- name: Install PostgreSQL 11 client
run: |