Skip to content

Commit 53beb31

Browse files
committed
Update github actions
1 parent 7dbbbd3 commit 53beb31

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

.github/workflows/manual_test_build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
name: Check with LintRST and Build
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v4
3636
- name: Set up Python ${{ inputs.pythonVersion }}
37-
uses: actions/setup-python@v1
37+
uses: actions/setup-python@v5
3838
with:
3939
python-version: ${{ inputs.pythonVersion }}
4040
- name: Install dependencies
@@ -52,7 +52,7 @@ jobs:
5252
run: |
5353
python ./setup.py build map
5454
- name: Store Tag Map Build Output File
55-
uses: actions/upload-artifact@v2
55+
uses: actions/upload-artifact@v4
5656
with:
5757
name: tag_map_files
5858
path: docs/MusicBrainz_Picard_Tag_Map.*
@@ -75,7 +75,7 @@ jobs:
7575
python ./setup.py clean epub
7676
python ./setup.py ${{ env.MY_BUILD_ARG }} build epub
7777
- name: Store ePub Build Output File
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: epub_file
8181
path: docs/*.epub
@@ -95,7 +95,7 @@ jobs:
9595
python ./setup.py clean pdf
9696
python ./setup.py ${{ env.MY_BUILD_ARG }} build pdf
9797
- name: Store PDF Build Output File
98-
uses: actions/upload-artifact@v2
98+
uses: actions/upload-artifact@v4
9999
with:
100100
name: pdf_file
101101
path: docs/*.pdf

.github/workflows/test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ jobs:
3535
matrix:
3636
python-version: [3.11]
3737
steps:
38-
- uses: actions/checkout@v2
38+
- uses: actions/checkout@v4
3939
- name: Set up Python ${{ matrix.python-version }}
40-
uses: actions/setup-python@v1
40+
uses: actions/setup-python@v5
4141
with:
4242
python-version: ${{ matrix.python-version }}
4343
- name: Install dependencies
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
python ./setup.py build map
5757
- name: Store Tag Map Build Output File
58-
uses: actions/upload-artifact@v2
58+
uses: actions/upload-artifact@v4
5959
with:
6060
name: tag_map_files
6161
path: docs/MusicBrainz_Picard_Tag_Map.*
@@ -65,7 +65,7 @@ jobs:
6565
python ./setup.py clean html
6666
python ./setup.py build html
6767
- name: Store HTML Build Output File
68-
uses: actions/upload-artifact@v2
68+
uses: actions/upload-artifact@v4
6969
with:
7070
name: html_files
7171
path: docs/*.zip
@@ -75,7 +75,7 @@ jobs:
7575
python ./setup.py clean epub
7676
python ./setup.py build epub
7777
- name: Store ePub Build Output File
78-
uses: actions/upload-artifact@v2
78+
uses: actions/upload-artifact@v4
7979
with:
8080
name: epub_file
8181
path: docs/*.epub
@@ -95,7 +95,7 @@ jobs:
9595
python ./setup.py clean pdf
9696
python ./setup.py build pdf
9797
- name: Store PDF Build Output File
98-
uses: actions/upload-artifact@v2
98+
uses: actions/upload-artifact@v4
9999
with:
100100
name: pdf_file
101101
path: docs/*.pdf

.github/workflows/test_build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737
matrix:
3838
python-version: [3.11]
3939
steps:
40-
- uses: actions/checkout@v2
40+
- uses: actions/checkout@v4
4141
- name: Set up Python ${{ matrix.python-version }}
42-
uses: actions/setup-python@v1
42+
uses: actions/setup-python@v5
4343
with:
4444
python-version: ${{ matrix.python-version }}
4545
- name: Install dependencies
@@ -57,7 +57,7 @@ jobs:
5757
run: |
5858
python ./setup.py build map
5959
- name: Store Tag Map Build Output File
60-
uses: actions/upload-artifact@v2
60+
uses: actions/upload-artifact@v4
6161
with:
6262
name: tag_map_files
6363
path: docs/MusicBrainz_Picard_Tag_Map.*
@@ -70,7 +70,7 @@ jobs:
7070
python ./setup.py clean html
7171
python ./setup.py -l all build html
7272
- name: Store HTML Build Output Files
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v4
7474
with:
7575
name: html_files
7676
path: docs/*.zip
@@ -80,7 +80,7 @@ jobs:
8080
python ./setup.py clean epub
8181
python ./setup.py -l all build epub
8282
- name: Store ePub Build Output Files
83-
uses: actions/upload-artifact@v2
83+
uses: actions/upload-artifact@v4
8484
with:
8585
name: epub_files
8686
path: docs/*.epub
@@ -100,7 +100,7 @@ jobs:
100100
python ./setup.py clean pdf
101101
python ./setup.py -l all build pdf
102102
- name: Store PDF Build Output Files
103-
uses: actions/upload-artifact@v2
103+
uses: actions/upload-artifact@v4
104104
with:
105105
name: pdf_files
106106
path: docs/*.pdf

.github/workflows/test_build_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
matrix:
3434
python-version: [3.11]
3535
steps:
36-
- uses: actions/checkout@v1
36+
- uses: actions/checkout@v4
3737
- name: Set up Python ${{ matrix.python-version }}
38-
uses: actions/setup-python@v1
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: ${{ matrix.python-version }}
4141
- name: Install dependencies

0 commit comments

Comments
 (0)