Skip to content

Commit 763a684

Browse files
committed
ci: bump several actions to their node24 compatible versions
1 parent 6eb98d2 commit 763a684

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
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: 7 additions & 7 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,7 +51,7 @@ 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:
5656
directory: ./tests
5757
token: ${{ secrets.CODECOV_TOKEN }} # optional but apparently makes upload more reliable
@@ -92,12 +92,12 @@ jobs:
9292
runs-on: windows-latest
9393
if: ${{ !contains(github.event.head_commit.message, '#no-ci') }}
9494
steps:
95-
- uses: actions/checkout@v4
95+
- uses: actions/checkout@v6
9696

9797
- uses: FedericoCarboni/setup-ffmpeg@v2
9898

9999
- name: Set up Python
100-
uses: actions/setup-python@v5
100+
uses: actions/setup-python@v6
101101
with:
102102
python-version: "3.9"
103103
cache: "pip"
@@ -126,15 +126,15 @@ jobs:
126126
test-heroku-env:
127127
runs-on: ubuntu-24.04
128128
steps:
129-
- uses: actions/checkout@v4
129+
- uses: actions/checkout@v6
130130

131131
- name: Read the Heroku run time env and cmd
132132
run: |
133133
echo "PYTHON_VERSION=$(cat .python-version)" >> $GITHUB_ENV
134134
echo "RUNTIME_CMD=$(cat Procfile | grep web: | sed 's/web: *//')" >> $GITHUB_ENV
135135
136136
- name: Set up Python
137-
uses: actions/setup-python@v5
137+
uses: actions/setup-python@v6
138138
with:
139139
python-version: "${{ env.PYTHON_VERSION }}"
140140
cache: "pip"

0 commit comments

Comments
 (0)