Skip to content

Commit

Permalink
Update github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rdswift committed Feb 5, 2025
1 parent 7dbbbd3 commit 53beb31
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 19 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/manual_test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:
name: Check with LintRST and Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ inputs.pythonVersion }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.pythonVersion }}
- name: Install dependencies
Expand All @@ -52,7 +52,7 @@ jobs:
run: |
python ./setup.py build map
- name: Store Tag Map Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tag_map_files
path: docs/MusicBrainz_Picard_Tag_Map.*
Expand All @@ -75,7 +75,7 @@ jobs:
python ./setup.py clean epub
python ./setup.py ${{ env.MY_BUILD_ARG }} build epub
- name: Store ePub Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: epub_file
path: docs/*.epub
Expand All @@ -95,7 +95,7 @@ jobs:
python ./setup.py clean pdf
python ./setup.py ${{ env.MY_BUILD_ARG }} build pdf
- name: Store PDF Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pdf_file
path: docs/*.pdf
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ jobs:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -55,7 +55,7 @@ jobs:
run: |
python ./setup.py build map
- name: Store Tag Map Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tag_map_files
path: docs/MusicBrainz_Picard_Tag_Map.*
Expand All @@ -65,7 +65,7 @@ jobs:
python ./setup.py clean html
python ./setup.py build html
- name: Store HTML Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: html_files
path: docs/*.zip
Expand All @@ -75,7 +75,7 @@ jobs:
python ./setup.py clean epub
python ./setup.py build epub
- name: Store ePub Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: epub_file
path: docs/*.epub
Expand All @@ -95,7 +95,7 @@ jobs:
python ./setup.py clean pdf
python ./setup.py build pdf
- name: Store PDF Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pdf_file
path: docs/*.pdf
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand All @@ -57,7 +57,7 @@ jobs:
run: |
python ./setup.py build map
- name: Store Tag Map Build Output File
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: tag_map_files
path: docs/MusicBrainz_Picard_Tag_Map.*
Expand All @@ -70,7 +70,7 @@ jobs:
python ./setup.py clean html
python ./setup.py -l all build html
- name: Store HTML Build Output Files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: html_files
path: docs/*.zip
Expand All @@ -80,7 +80,7 @@ jobs:
python ./setup.py clean epub
python ./setup.py -l all build epub
- name: Store ePub Build Output Files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: epub_files
path: docs/*.epub
Expand All @@ -100,7 +100,7 @@ jobs:
python ./setup.py clean pdf
python ./setup.py -l all build pdf
- name: Store PDF Build Output Files
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: pdf_files
path: docs/*.pdf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test_build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ jobs:
matrix:
python-version: [3.11]
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down

0 comments on commit 53beb31

Please sign in to comment.