Skip to content

Commit dfeb722

Browse files
committed
Update GitHub Actions to latest versions
GitHub is deprecating Node.js 20, therefore all actions should be updated to Node.js 24. All actions with a Node.js 24 version is updated. `FedericoCarboni/setup-ffmpeg` still does not have a Node.js 24 version. - Update actions/upload-pages-artifact from v3 to v4 - Update actions/configure-pages from v4 to v5 - Update actions/setup-python from v5 to v6 in all workflows - Update actions/checkout from v4 to v6 in all workflows - Update stefanzweifel/git-auto-commit-action from v5 to v7
1 parent b53558b commit dfeb722

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
python-version: ["3.8","3.9","3.10"]
2121

2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v6
2424

2525
- name: Set up Python ${{ matrix.python-version }}
26-
uses: actions/setup-python@v5
26+
uses: actions/setup-python@v6
2727
with:
2828
python-version: ${{ matrix.python-version }}
2929

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
runs-on: ubuntu-latest
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Setup Python
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: '3.9'
3131

@@ -38,10 +38,10 @@ jobs:
3838
run: mkdocs build --clean
3939

4040
- name: Setup Pages
41-
uses: actions/configure-pages@v4
41+
uses: actions/configure-pages@v5
4242

4343
- name: Upload artifact
44-
uses: actions/upload-pages-artifact@v3
44+
uses: actions/upload-pages-artifact@v4
4545
with:
4646
path: './site'
4747

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
python-version: ["3.10"]
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414

1515
- name: Set up Python ${{ matrix.python-version }}
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: ${{ matrix.python-version }}
1919

@@ -22,7 +22,7 @@ jobs:
2222
pip install handsdown==1.1.0
2323
handsdown --external https://github.com/fourMs/MGT-python --branch master
2424
25-
- uses: stefanzweifel/git-auto-commit-action@v5
25+
- uses: stefanzweifel/git-auto-commit-action@v7
2626
with:
2727
commit_message: Update documentation
2828
env:
@@ -33,7 +33,7 @@ jobs:
3333
id: setup-ffmpeg
3434

3535
- name: Set up Python ${{ matrix.python-version }}
36-
uses: actions/setup-python@v4
36+
uses: actions/setup-python@v6
3737
with:
3838
python-version: ${{ matrix.python-version }}
3939

0 commit comments

Comments
 (0)