Skip to content

Commit 4b44a78

Browse files
authored
chore: update action version (#2552)
In this PR: - Update action version - Format python code
1 parent 89381c7 commit 4b44a78

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/verify_library_generation.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515
java: [ 11 ]
1616
runs-on: ubuntu-22.04
1717
steps:
18-
- uses: actions/checkout@v3
19-
- uses: actions/setup-java@v3
18+
- uses: actions/checkout@v4
19+
- uses: actions/setup-java@v4
2020
with:
2121
java-version: ${{ matrix.java }}
2222
distribution: temurin
2323
cache: maven
24-
- uses: actions/setup-python@v4
24+
- uses: actions/setup-python@v5
2525
with:
2626
python-version: 3.11
2727
- name: install pyenv
@@ -58,14 +58,14 @@ jobs:
5858
os: [ ubuntu-22.04, macos-12 ]
5959
runs-on: ${{ matrix.os }}
6060
steps:
61-
- uses: actions/checkout@v3
61+
- uses: actions/checkout@v4
6262
- name: install utils (macos)
6363
if: matrix.os == 'macos-12'
6464
shell: bash
6565
run: |
6666
brew update --preinstall
6767
brew install coreutils
68-
- uses: actions/setup-python@v4
68+
- uses: actions/setup-python@v5
6969
with:
7070
python-version: 3.11
7171
- name: install python dependencies
@@ -101,7 +101,7 @@ jobs:
101101
lint-shell:
102102
runs-on: ubuntu-22.04
103103
steps:
104-
- uses: actions/checkout@v3
104+
- uses: actions/checkout@v4
105105
- name: Run ShellCheck
106106
uses: ludeeus/[email protected]
107107
with:
@@ -111,7 +111,7 @@ jobs:
111111
lint-python:
112112
runs-on: ubuntu-22.04
113113
steps:
114-
- uses: actions/checkout@v3
114+
- uses: actions/checkout@v4
115115
- name: install python dependencies
116116
shell: bash
117117
run: |

library_generation/test/integration_tests.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ def test_get_commit_message_success(self):
7676
cmp(
7777
f"{config_dir}/{repo}/pr-description-golden.txt",
7878
f"{description_file}",
79-
), "The generated PR description does not match the expected golden file"
79+
),
80+
"The generated PR description does not match the expected golden file",
8081
)
8182
os.remove(f"{description_file}")
8283

0 commit comments

Comments
 (0)