.github/workflows/ci.yml in umbrellio-sequel-plugins-0.11.0.143 vs .github/workflows/ci.yml in umbrellio-sequel-plugins-0.12.0
- old
+ new
@@ -9,11 +9,11 @@
# We want to run on external PRs, but not on our own internal PRs as they'll be run on push event
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != 'umbrellio/umbrellio-sequel-plugins'
services:
postgres:
- image: postgres:12
+ image: postgres:14
env:
POSTGRES_USER: root
POSTGRES_HOST_AUTH_METHOD: trust
options: >-
--health-cmd pg_isready
@@ -28,16 +28,16 @@
PGUSER: root
strategy:
fail-fast: false
matrix:
- ruby: ["2.7", "3.0", "3.1"]
+ ruby: ["2.7", "3.0", "3.1", "3.2"]
name: ${{ matrix.ruby }}
steps:
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
@@ -56,10 +56,10 @@
# Run on push to master branch
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
- - uses: actions/checkout@v1
+ - uses: actions/checkout@v3
- uses: umbrellio/publish-ruby-gem-action@v1.0.4
with:
api-key: ${{ secrets.RUBYGEMS_API_KEY }}
env: