Skip to content

Commit cdf2d13

Browse files
authored
Merge f83858d into 676e282
2 parents 676e282 + f83858d commit cdf2d13

File tree

4 files changed

+9
-16
lines changed

4 files changed

+9
-16
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
ci:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1111

1212
- name: Install Dependencies
1313
run: sudo apt-get install gettext

.github/workflows/deploy-gh-page.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
name: deploy-gh-page
22

33
on:
4-
push:
5-
branches:
6-
- "3.12"
4+
pull_request:
75

86
jobs:
97
cd:
108
runs-on: ubuntu-latest
119
steps:
12-
- uses: actions/checkout@v2
10+
- uses: actions/checkout@v4
1311

1412
- name: Install Dependencies
1513
run: sudo apt-get install gettext

.github/workflows/py312-sync-cpython.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
name: python-3.12-sync-with-cpython
22

33
on:
4-
push:
5-
branches:
6-
- "3.12"
7-
schedule:
8-
- cron: "0 0 * * *"
4+
pull_request:
95

106
jobs:
117
sync:
@@ -14,7 +10,7 @@ jobs:
1410
VERSION: "3.12"
1511
BRANCH: "cron/sync/3.12"
1612
steps:
17-
- uses: actions/checkout@v2
13+
- uses: actions/checkout@v4
1814
with:
1915
ref: ${{ env.VERSION }}
2016

@@ -61,4 +57,4 @@ jobs:
6157
- name: Check outputs
6258
run: |
6359
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}"
64-
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"
60+
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}"

.github/workflows/summarize_progress.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
name: summarize_progress
22

33
on:
4-
schedule:
5-
- cron: '30 23 * * 5'
4+
pull_request:
65

76
jobs:
87
ci:
@@ -13,7 +12,7 @@ jobs:
1312
# added or changed files to the repository.
1413
contents: write
1514
steps:
16-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v4
1716

1817
- name: Install poetry
1918
uses: abatilo/actions-poetry@v3
@@ -40,4 +39,4 @@ jobs:
4039
uses: stefanzweifel/git-auto-commit-action@v5
4140
with:
4241
commit_message: Weekly Update -- Summarize Progress
43-
repository: markdown
42+
repository: markdown

0 commit comments

Comments
 (0)