Skip to content

Commit 97ecffc

Browse files
Merge pull request #2113 from BalancerMaxis/dependabot/github_actions/stefanzweifel/git-auto-commit-action-6
chore(deps): bump stefanzweifel/git-auto-commit-action from 5 to 6
2 parents 5ac5d52 + 8113a26 commit 97ecffc

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

.github/workflows/black.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ jobs:
88
steps:
99
- name: Checkout code
1010
uses: actions/checkout@v4
11+
with:
12+
ref: ${{ github.head_ref }}
1113

1214
- name: Black
1315
uses: psf/black@stable
1416
with:
1517
options: "--verbose"
1618

1719
- name: Auto commit
18-
uses: stefanzweifel/git-auto-commit-action@v5.0.1
20+
uses: stefanzweifel/git-auto-commit-action@v6
1921
with:
2022
commit_message: "style: ci lint with `black`"

.github/workflows/run_auth_gen.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
steps:
1414
- name: Checkout
1515
uses: actions/checkout@v4
16+
with:
17+
ref: ${{ github.head_ref }}
1618

1719
- name: Restore Compiler Caches
1820
id: restore-compiler-caches
@@ -39,7 +41,7 @@ jobs:
3941
python3 action-scripts/gen_add_permissions_payload.py
4042
4143
- name: Commit and push changes
42-
uses: stefanzweifel/git-auto-commit-action@v5
44+
uses: stefanzweifel/git-auto-commit-action@v6
4345
with:
4446
commit_message: Generate permissions add payload and tables
4547
commit_user_name: GitHub Actions

.github/workflows/run_feesweep.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
steps:
1818
- name: Checkout
1919
uses: actions/checkout@v4
20+
with:
21+
ref: ${{ github.head_ref }}
2022

2123
- name: Set up Python 3.10
2224
uses: actions/setup-python@v5
@@ -31,7 +33,7 @@ jobs:
3133
python3 sweepFees.py
3234
3335
- name: Commit and push changes
34-
uses: stefanzweifel/git-auto-commit-action@v5
36+
uses: stefanzweifel/git-auto-commit-action@v6
3537
with:
3638
commit_message: Generate Fee Sweep transaction builder jsons
3739
commit_user_name: GitHub Actions

.github/workflows/run_reports_reusable.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ jobs:
118118
commit_message: Automated processing of Payload PR (validations, transformations, and reports) + reformat JSON
119119

120120
- name: Commit and push reports
121-
uses: stefanzweifel/git-auto-commit-action@v5
121+
uses: stefanzweifel/git-auto-commit-action@v6
122122
with:
123123
commit_message:
124124
commit_user_name: GitHub Actions

.github/workflows/upkeeps.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python query_upkeeps.py
3131
3232
- name: Commit CSV file
33-
uses: stefanzweifel/git-auto-commit-action@v5
33+
uses: stefanzweifel/git-auto-commit-action@v6
3434
with:
3535
branch: "upkeeps"
3636
file_pattern: "upkeeps.csv"

0 commit comments

Comments
 (0)