Skip to content

Commit

Permalink
Merge pull request #1488 from Homebrew/sync-shared-config
Browse files Browse the repository at this point in the history
Synchronize shared configuration
  • Loading branch information
EricFromCanada authored Nov 6, 2024
2 parents 2de432e + b55659f commit a8a2149
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
# This is only available on public repositories.
if: >
always() &&
!contains(fromJSON('[["cancelled", "skipped"]]'), needs.workflow_syntax.result) &&
!contains(fromJSON('["cancelled", "skipped"]'), needs.workflow_syntax.result) &&
!github.event.repository.private
runs-on: ubuntu-latest
permissions:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.5
3.3.6
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ DEPENDENCIES
simplecov-cobertura

RUBY VERSION
ruby 3.3.5p100
ruby 3.3.6p108

BUNDLED WITH
2.5.20
1 change: 1 addition & 0 deletions spec/bundle/brew_dumper_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "ostruct"
require "spec_helper"
require "tsort"
require "formula"
Expand Down
1 change: 1 addition & 0 deletions spec/bundle/skipper_spec.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "ostruct"
require "spec_helper"

describe Bundle::Skipper do
Expand Down
1 change: 1 addition & 0 deletions spec/stub/formula.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# frozen_string_literal: true

require "ostruct"
require "pathname"

class Formula
Expand Down
2 changes: 2 additions & 0 deletions spec/stub/os.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require "ostruct"

module MacOS
module CLT
def self.version
Expand Down
2 changes: 2 additions & 0 deletions spec/stub/tap.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# frozen_string_literal: true

require "ostruct"

class Tap
def self.select(*)
[]
Expand Down

0 comments on commit a8a2149

Please sign in to comment.