Skip to content

Commit 18501f7

Browse files
committed
Don't use the Gemfile lock on CI steps
This file is only for development.
1 parent b1479e4 commit 18501f7

File tree

3 files changed

+7
-0
lines changed

3 files changed

+7
-0
lines changed

.github/workflows/lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616

17+
- name: Remove $BUNDLE_GEMFILE.lock
18+
run: rm -f $BUNDLE_GEMFILE.lock
19+
1720
- name: Set up Ruby 3.3
1821
uses: ruby/setup-ruby@v1
1922
with:

.github/workflows/rail_inspector.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v4
20+
- name: Remove $BUNDLE_GEMFILE.lock
21+
run: rm -f $BUNDLE_GEMFILE.lock
2022
- name: Set up Ruby 3.3
2123
uses: ruby/setup-ruby@v1
2224
with:

.github/workflows/rails-new-docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- uses: actions/checkout@v4
18+
- name: Remove $BUNDLE_GEMFILE.lock
19+
run: rm -f $BUNDLE_GEMFILE.lock
1820
- name: Set up Ruby 3.3
1921
uses: ruby/setup-ruby@v1
2022
with:

0 commit comments

Comments
 (0)