Skip to content

Commit b9579e5

Browse files
authored
Merge pull request #898 from Homebrew/dependabot/all-cfd78e7aca
2 parents e2c5491 + a7cad5f commit b9579e5

File tree

7 files changed

+12
-11
lines changed

7 files changed

+12
-11
lines changed

.github/workflows/actionlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
path: results.sarif
9494

9595
- name: Upload SARIF file
96-
uses: github/codeql-action/upload-sarif@3c3833e0f8c1c83d449a7478aa59c036a9165498 # v3.29.11
96+
uses: github/codeql-action/upload-sarif@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
9797
with:
9898
sarif_file: results.sarif
9999
category: zizmor

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
persist-credentials: false
2525

2626
- name: Set up Ruby
27-
uses: ruby/setup-ruby@efbf473cab83af4468e8606cc33eca9281bb213f # v1.256.0
27+
uses: ruby/setup-ruby@44511735964dcb71245e7e55f72539531f7bc0eb # v1.257.0
2828
with:
2929
ruby-version: ruby
3030

.github/workflows/stale-issues.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
pull-requests: write
3939
steps:
4040
- name: Mark/Close Stale Issues and Pull Requests
41-
uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
41+
uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
4242
with:
4343
repo-token: ${{ secrets.GITHUB_TOKEN }}
4444
days-before-stale: 21
@@ -68,7 +68,7 @@ jobs:
6868
pull-requests: write
6969
steps:
7070
- name: Mark/Close Stale `bump-formula-pr` and `bump-cask-pr` Pull Requests
71-
uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
71+
uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
7272
with:
7373
repo-token: ${{ secrets.GITHUB_TOKEN }}
7474
days-before-stale: 2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
persist-credentials: false
2424

2525
- name: Set up Ruby
26-
uses: ruby/setup-ruby@efbf473cab83af4468e8606cc33eca9281bb213f # v1.256.0
26+
uses: ruby/setup-ruby@44511735964dcb71245e7e55f72539531f7bc0eb # v1.257.0
2727
with:
2828
ruby-version: ${{ matrix.ruby }}
2929
bundler-cache: true
@@ -37,7 +37,7 @@ jobs:
3737
run: bundle exec rubocop -D lib/
3838

3939
- name: Upload coverage results
40-
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
40+
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
4141
with:
4242
files: coverage/coverage.xml
4343
disable_search: true

Brewfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
brew "ruby"

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ GEM
2626
rake (13.3.0)
2727
regexp_parser (2.11.2)
2828
rexml (3.4.2)
29-
rubocop (1.80.1)
29+
rubocop (1.80.2)
3030
json (~> 2.3)
3131
language_server-protocol (~> 3.17.0.2)
3232
lint_roller (~> 1.1.0)

lib/macho/exceptions.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,10 @@ def initialize(fat_cputype, fat_cpusubtype, macho_cputype, macho_cpusubtype)
7171
# @param cpusubtype_fat [Integer] the CPU subtype in the fat header
7272
# @param cputype_macho [Integer] the CPU type in the macho header
7373
# @param cpusubtype_macho [Integer] the CPU subtype in the macho header
74-
super(("Mismatch between cputypes >> 0x%08<fat_cputype>x and 0x%08<macho_cputype>x\n" \
75-
"and/or cpusubtypes >> 0x%08<fat_cpusubtype>x and 0x%08<macho_cpusubtype>x" %
76-
{ :fat_cputype => fat_cputype, :macho_cputype => macho_cputype,
77-
:fat_cpusubtype => fat_cpusubtype, :macho_cpusubtype => macho_cpusubtype }))
74+
super("Mismatch between cputypes >> 0x%08<fat_cputype>x and 0x%08<macho_cputype>x\n" \
75+
"and/or cpusubtypes >> 0x%08<fat_cpusubtype>x and 0x%08<macho_cpusubtype>x" %
76+
{ :fat_cputype => fat_cputype, :macho_cputype => macho_cputype,
77+
:fat_cpusubtype => fat_cpusubtype, :macho_cpusubtype => macho_cpusubtype })
7878
end
7979
end
8080

0 commit comments

Comments
 (0)