Skip to content

Commit 9bb6dc7

Browse files
authored
Merge pull request #21 from Hexlet/dependabot/github_actions/actions-major-76468cb07f
Bump actions/checkout from 5 to 6 in the actions-major group
2 parents 7e8f18e + dd3220d commit 9bb6dc7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
ruby: ['3.0', head]
1111
runs-on: ${{ matrix.os }}
1212
steps:
13-
- uses: actions/checkout@v5
13+
- uses: actions/checkout@v6
1414
- uses: ruby/setup-ruby@v1
1515
with:
1616
ruby-version: ${{ matrix.ruby }}

bin/tapioca

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@
88
# this file is here to facilitate running it.
99
#
1010

11-
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
11+
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../Gemfile', __dir__)
1212

13-
bundle_binstub = File.expand_path("bundle", __dir__)
13+
bundle_binstub = File.expand_path('bundle', __dir__)
1414

1515
if File.file?(bundle_binstub)
16-
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
16+
if File.read(bundle_binstub, 300).include?('This file was generated by Bundler')
1717
load(bundle_binstub)
1818
else
1919
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
2020
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
2121
end
2222
end
2323

24-
require "rubygems"
25-
require "bundler/setup"
24+
require 'rubygems'
25+
require 'bundler/setup'
2626

27-
load Gem.bin_path("tapioca", "tapioca")
27+
load Gem.bin_path('tapioca', 'tapioca')

0 commit comments

Comments
 (0)