Skip to content

Commit 1618cd8

Browse files
authored
Merge pull request #296 from ReadAlongs/dev.ej/bump-add-pr-comment
ci: bump add-pr-comment to latest for its improved safety stance, and CI maintenance
2 parents 124d003 + 1219d0d commit 1618cd8

File tree

5 files changed

+16
-17
lines changed

5 files changed

+16
-17
lines changed

.github/workflows/codeql.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535

3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939

4040
# Initializes the CodeQL tools for scanning.
4141
- name: Initialize CodeQL

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
permissions:
1111
contents: write # to push to the gh-pages branch
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
with:
1515
fetch-depth: 0 # needed to get the gh-pages branch
16-
- uses: actions/setup-python@v5
16+
- uses: actions/setup-python@v6
1717
with:
1818
python-version: "3.10"
1919
- name: Install dependencies and Studio

.github/workflows/matrix-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
1717
runs-on: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
- uses: FedericoCarboni/setup-ffmpeg@v2
2121
if : runner.os != 'macOS'
2222
- run: brew install ffmpeg

.github/workflows/pythonpublish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525
contents: write # allows creating a GitHub Release
2626
id-token: write # allows signing the dists with Sigstore
2727
steps:
28-
- uses: actions/checkout@v4
28+
- uses: actions/checkout@v6
2929

3030
- name: Set up Python
31-
uses: actions/setup-python@v5
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: "3.x"
3434

@@ -86,10 +86,10 @@ jobs:
8686
permissions:
8787
contents: write # to push to the gh-pages branch
8888
steps:
89-
- uses: actions/checkout@v4
89+
- uses: actions/checkout@v6
9090
with:
9191
fetch-depth: 0 # needed to get the gh-pages branch
92-
- uses: actions/setup-python@v5
92+
- uses: actions/setup-python@v6
9393
with:
9494
python-version: "3.10"
9595
- name: Install dependencies and Studio

.github/workflows/tests.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
permissions:
1414
pull-requests: write
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717

1818
- uses: FedericoCarboni/setup-ffmpeg@v2
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: "3.9"
2424
cache: "pip"
@@ -51,9 +51,8 @@ jobs:
5151
# - setuptools is MIT, but not always auto-detected.
5252
run: licensecheck --requirements-path pyproject.toml --zero --ignore-packages pympi-ling text-unidecode setuptools
5353

54-
- uses: codecov/codecov-action@v4
54+
- uses: codecov/codecov-action@v5
5555
with:
56-
directory: ./tests
5756
token: ${{ secrets.CODECOV_TOKEN }} # optional but apparently makes upload more reliable
5857
fail_ci_if_error: false # too many upload errors to keep "true"
5958

@@ -83,7 +82,7 @@ jobs:
8382
- name: Report help speed in a PR comment
8483
if: github.event_name == 'pull_request'
8584
continue-on-error: true
86-
uses: mshick/add-pr-comment@v2
85+
uses: mshick/add-pr-comment@7c1a3a3e5a072270dc21c0639df39ca11e860b2b # v3.5.0
8786
with:
8887
preformatted: true
8988
message-path: import-message.txt
@@ -92,12 +91,12 @@ jobs:
9291
runs-on: windows-latest
9392
if: ${{ !contains(github.event.head_commit.message, '#no-ci') }}
9493
steps:
95-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v6
9695

9796
- uses: FedericoCarboni/setup-ffmpeg@v2
9897

9998
- name: Set up Python
100-
uses: actions/setup-python@v5
99+
uses: actions/setup-python@v6
101100
with:
102101
python-version: "3.9"
103102
cache: "pip"
@@ -126,15 +125,15 @@ jobs:
126125
test-heroku-env:
127126
runs-on: ubuntu-24.04
128127
steps:
129-
- uses: actions/checkout@v4
128+
- uses: actions/checkout@v6
130129

131130
- name: Read the Heroku run time env and cmd
132131
run: |
133132
echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
134133
echo "RUNTIME_CMD=$(cat Procfile | grep web: | sed 's/web: *//')" >> $GITHUB_ENV
135134
136135
- name: Set up Python
137-
uses: actions/setup-python@v5
136+
uses: actions/setup-python@v6
138137
with:
139138
python-version: "${{ env.PYTHON_VERSION }}"
140139
cache: "pip"

0 commit comments

Comments
 (0)