Skip to content

Commit

Permalink
Merge pull request #981 from libgit2/cmn/update-libgit2
Browse files Browse the repository at this point in the history
Update libgit2 to 15668ba5
  • Loading branch information
carlosmn authored Sep 25, 2024
2 parents 57257cb + 08f538f commit daea268
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2' ]
os: [ macOS-latest ]
os: [ macOS-12 ]
runs-on: ${{ matrix.os }}

name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }}
Expand Down
4 changes: 2 additions & 2 deletions ext/rugged/rugged_commit.c
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ static VALUE rb_git_commit_create(VALUE self, VALUE rb_repo, VALUE rb_data)
commit_data.message,
commit_data.tree,
commit_data.parent_count,
commit_data.parents);
(git_commit * const *) commit_data.parents);

cleanup:
free_commit_options(&commit_data);
Expand Down Expand Up @@ -813,7 +813,7 @@ static VALUE rb_git_commit_create_to_s(VALUE self, VALUE rb_repo, VALUE rb_data)
commit_data.message,
commit_data.tree,
commit_data.parent_count,
commit_data.parents);
(git_commit * const *) commit_data.parents);

cleanup:
free_commit_options(&commit_data);
Expand Down
2 changes: 1 addition & 1 deletion vendor/libgit2
Submodule libgit2 updated 227 files

0 comments on commit daea268

Please sign in to comment.