Skip to content

Commit e4b5dc4

Browse files
committed
Update all CI actions and dockers to the latest major
1 parent 6802370 commit e4b5dc4

4 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build-and-deploy.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161

6262
steps:
6363
- name: Checkout
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v6
6565
with:
6666
fetch-depth: 0 ## all branches all tags
6767

@@ -278,7 +278,7 @@ jobs:
278278
cat $GITHUB_ENV
279279
280280
- name: Setup python
281-
uses: actions/setup-python@v4
281+
uses: actions/setup-python@v6
282282
with:
283283
python-version: 3.12
284284

@@ -309,7 +309,7 @@ jobs:
309309
310310
pip install -r requirements.txt
311311
312-
- uses: ammaraskar/sphinx-problem-matcher@master
312+
- uses: ammaraskar/sphinx-problem-matcher@v1
313313

314314
- name: make linkcheck - check links
315315
if: ${{ env.SKIP_LINKCHECK != 'true' }}
@@ -521,14 +521,14 @@ jobs:
521521
sha1sum dist/gh-pages.tar.gz
522522
523523
- name: Upload artifact
524-
uses: actions/upload-artifact@v4
524+
uses: actions/upload-artifact@v7
525525
with:
526526
name: sphinx-docs
527527
path: dist/gh-pages.tar.gz
528528

529529
- name: Upload github-pages
530530
if: ${{ env.DEPLOY_ENV_TEST == 'true' || env.DEPLOY_ENV_LIVE == 'true' }}
531-
uses: actions/upload-pages-artifact@main
531+
uses: actions/upload-pages-artifact@v5
532532
with:
533533
name: github-pages
534534
path: dist/gh-pages
@@ -573,7 +573,7 @@ jobs:
573573
- name: Deploy to GitHub Pages
574574
id: deployment
575575
if: ${{ env.DEPLOY_ENV_TEST == 'true' || env.DEPLOY_ENV_LIVE == 'true' }}
576-
uses: actions/deploy-pages@v2
576+
uses: actions/deploy-pages@v5
577577

578578
- name: Summary
579579
run: |

.github/workflows/push-doc.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,13 @@ jobs:
2121

2222
if: github.event.head_commit.author.email != 'action.github.com'
2323
steps:
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v6
2525
with:
2626
fetch-depth: 0
2727
- name: Set up Docker Buildx
28-
uses: docker/setup-buildx-action@v2
28+
uses: docker/setup-buildx-action@v4
2929
- name: Build docker image
30-
uses: docker/build-push-action@v3
30+
uses: docker/build-push-action@v7
3131
with:
3232
context: .
3333
load: true

.github/workflows/test-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ jobs:
77
test:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v6
1111
with:
1212
fetch-depth: 0
1313
- name: "setup python"
14-
uses: actions/setup-python@v4
14+
uses: actions/setup-python@v6
1515
with:
1616
python-version: 3.12
1717
- name: "install dependencies"
1818
run: |
1919
apt-get update -y && apt-get install -y git
2020
pip install -r requirements.txt
21-
- uses: ammaraskar/sphinx-problem-matcher@master
21+
- uses: ammaraskar/sphinx-problem-matcher@v1
2222
- name: "Test doc building"
2323
run: |
2424
source bin/setup_env.sh

.github/workflows/update-pot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,18 @@ jobs:
1515
pots:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v6
1919
with:
2020
fetch-depth: 0
2121
- name: "setup python"
22-
uses: actions/setup-python@v4
22+
uses: actions/setup-python@v6
2323
with:
2424
python-version: 3.12
2525
- name: "install dependencies"
2626
run: |
2727
apt-get update -y && apt-get install -y git gettext sphinx-intl
2828
pip install -r requirements.txt
29-
- uses: ammaraskar/sphinx-problem-matcher@master
29+
- uses: ammaraskar/sphinx-problem-matcher@v1
3030
- name: "update pot"
3131
run: |
3232
source bin/setup_env.sh
@@ -44,7 +44,7 @@ jobs:
4444
commit_author: GiHub Action Bot <action@github.com>
4545
file_pattern: 'source/locale/*.pot source/locale/*.po'
4646
- name: Push changes
47-
uses: ad-m/github-push-action@master
47+
uses: ad-m/github-push-action@v1
4848
with:
4949
github_token: ${{ secrets.GITHUB_TOKEN }}
5050
branch: ${{ github.ref }}

0 commit comments

Comments
 (0)