Skip to content

Commit

Permalink
Remove fixed bundler version from gh-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
FloThinksPi committed Apr 7, 2022
1 parent 81c847d commit 2e8e343
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/composite/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ runs:
using: "composite"
steps:
- uses: actions/checkout@v2
- run: |
- name: Install OS dependencies
run: |
sudo apt-get update && \
sudo apt-get -y install \
build-essential \
Expand All @@ -37,8 +38,7 @@ runs:
shell: bash
- uses: ruby/setup-ruby@v1
with:
bundler: "2.3.5"
bundler-cache: true
- name: Install dependencies
- name: Install Ruby dependencies
run: bundle install
shell: bash
10 changes: 7 additions & 3 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,17 @@ on:
branches: [ main ]
paths-ignore:
- 'docs/**'
- 'decisions/**'
- '.github/workflows/docs_test.yml'
push:
branches: [ main ]
paths-ignore:
- 'docs/**'
- 'decisions/**'
- '.github/workflows/docs_test.yml'

jobs:
rubocop:
Rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -27,7 +31,7 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required

test_postgres:
Test-Postgres:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down Expand Up @@ -58,7 +62,7 @@ jobs:
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} # required

test_mysql:
Test-Mysql:
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -636,4 +636,4 @@ DEPENDENCIES
yajl-ruby

BUNDLED WITH
2.3.10
2.1.4

0 comments on commit 2e8e343

Please sign in to comment.