Skip to content

Commit 6a13148

Browse files
authored
Merge branch 'master' into prevend-injection
2 parents 6c8f158 + be83749 commit 6a13148

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

.github/workflows/close-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414
if: github.repository == 'line/line-bot-sdk-python'
1515
steps:
16-
- uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
16+
- uses: actions/stale@5f858e3efba33a5ca4407a664cc011ad407f2008 # v10.1.0
1717
with:
1818
days-before-issue-stale: 14
1919
days-before-issue-close: 0

.github/workflows/generate-code.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,12 @@ jobs:
3434
echo "DIFF_IS_EMPTY=$([[ -z "$diff_excluding_submodule" ]] && echo 'true' || echo 'false')" >> $GITHUB_ENV
3535
echo "CURRENT_DATETIME=$(date +'%Y%m%d%H%M%S')" >> $GITHUB_ENV
3636
## Run if diff exists and pull request or merge queue, and make CI status failure (but allow renovate bot)
37+
## 29139614 is renovate bot's actor id
3738
- if: >-
3839
${{
3940
(github.event_name == 'pull_request' || github.event_name == 'merge_group')
4041
&& env.DIFF_IS_EMPTY != 'true'
41-
&& github.actor != 'renovate[bot]'
42+
&& github.actor_id != '29139614'
4243
}}
4344
run: |
4445
echo "There are changes in the generated codes. Please run 'generate-code.py' and commit the changes." >&2

generator/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<plugin>
1212
<groupId>org.apache.maven.plugins</groupId>
1313
<artifactId>maven-enforcer-plugin</artifactId>
14-
<version>3.6.1</version>
14+
<version>3.6.2</version>
1515
<executions>
1616
<execution>
1717
<id>enforce-maven</id>
@@ -97,7 +97,7 @@
9797
<plugin>
9898
<groupId>org.apache.maven.plugins</groupId>
9999
<artifactId>maven-compiler-plugin</artifactId>
100-
<version>3.14.0</version>
100+
<version>3.14.1</version>
101101
<configuration>
102102
<source>1.8</source>
103103
<target>1.8</target>
@@ -120,12 +120,12 @@
120120
<dependency>
121121
<groupId>ch.qos.logback</groupId>
122122
<artifactId>logback-classic</artifactId>
123-
<version>1.5.18</version>
123+
<version>1.5.19</version>
124124
</dependency>
125125
</dependencies>
126126
<properties>
127127
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
128-
<openapi-generator-version>7.15.0</openapi-generator-version>
128+
<openapi-generator-version>7.16.0</openapi-generator-version>
129129
<maven-plugin-version>1.0.0</maven-plugin-version>
130130
<junit-version>4.13.2</junit-version>
131131
</properties>

requirements-dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
-r requirements.txt
22
-r requirements-test.txt
3-
tox==4.30.2
3+
tox==4.30.3
44
wheel==0.46.1
55
Sphinx==7.4.7
66
sphinx-rtd-theme==3.0.2
77
pypandoc==1.15
88
twine==6.2.0
9-
black==25.1.0
9+
black==25.9.0

requirements-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ pytest==8.4.2
22
pytest-pep8==1.0.6
33
pytest-cov==7.0.0
44
pytest-aiohttp==1.1.0
5-
pytest-asyncio==1.1.0
5+
pytest-asyncio==1.2.0
66
responses==0.25.8
77
pytest_httpserver >= 1.1.2

0 commit comments

Comments
 (0)