Skip to content

Commit d92d571

Browse files
chore(deps): update actions/setup-python action to v6.1.0 (#97)
1 parent 7712d22 commit d92d571

File tree

6 files changed

+270
-182
lines changed

6 files changed

+270
-182
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
7272

7373
- name: Set up Python
74-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
74+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
7575
with:
7676
python-version: "3.14"
7777

.github/workflows/ci-pre-commit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
submodules: recursive
1515
token: ${{ secrets.GITHUB_TOKEN }}
1616

17-
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
17+
- uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
1818
with:
1919
python-version: "3.x"
2020

.github/workflows/ci-test-reproducibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
1515

1616
- name: Set up Python
17-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
17+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
1818
with:
1919
python-version: "3.14"
2020

.github/workflows/ci-test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ["3.10", "3.11", "3.12", "3.13"]
18+
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
1919

2020
steps:
2121
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
2222
with:
2323
fetch-depth: 0
2424

2525
- name: Set up Python
26-
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
26+
uses: actions/setup-python@83679a892e2d95755f2dac6acb0bfd1e9ac5d548 # v6.1.0
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

@@ -76,13 +76,13 @@ jobs:
7676
run: make test
7777

7878
- name: SonarQube Scan
79-
if: matrix.python-version == env.TARGET_PYTHON_VERSION
79+
if: matrix.python-version == env.TARGET_PYTHON_VERSION && github.event.pull_request.head.repo.full_name == github.repository
8080
uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v6.0.0
8181
env:
8282
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
8383

8484
- name: Upload coverage reports to Codecov
85-
if: matrix.python-version == env.TARGET_PYTHON_VERSION
85+
if: matrix.python-version == env.TARGET_PYTHON_VERSION && github.event.pull_request.head.repo.full_name == github.repository
8686
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
8787
with:
8888
fail_ci_if_error: true

leetcode_py/cli/resources/leetcode/json/tags.json5

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,7 @@
255255
"number_of_connected_components_in_an_undirected_graph",
256256
"number_of_islands",
257257
"pacific_atlantic_water_flow",
258+
"palindrome_partitioning",
258259
"palindromic_substrings",
259260
"partition_equal_subset_sum",
260261
"permutations",

0 commit comments

Comments
 (0)