Skip to content

Commit 5be2b8e

Browse files
authored
chore: bump gitbugactions (#27)
1 parent 8d95918 commit 5be2b8e

File tree

3 files changed

+480
-416
lines changed

3 files changed

+480
-416
lines changed

gitbug/bug.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ def __set_commit(self, repo: pygit2.Repository, commit: str):
5757
repo.checkout_tree(commit)
5858
repo.create_tag(
5959
str(uuid.uuid4()),
60-
commit.oid,
61-
pygit2.GIT_OBJ_COMMIT,
60+
commit.id,
61+
pygit2.GIT_OBJECT_COMMIT,
6262
commit.author,
6363
commit.message,
6464
)
65-
repo.set_head(commit.oid)
65+
repo.set_head(commit.id)
6666

6767
def __checkout_buggy(self, repo: pygit2.Repository) -> None:
6868
# Checkout the buggy version

0 commit comments

Comments
 (0)