Skip to content

Commit

Permalink
Bump all action versions to kill node16 warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanperret committed Jul 12, 2024
1 parent 4e7d45e commit c701f4c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/actions/init-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
sed -i -e s/PACKAGE_VERSION/$version_without_suffix/ src/build/settings/base.json
- name: Set up Python ${{ matrix.python-version }}
id: py
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: "pip"
16 changes: 8 additions & 8 deletions .github/workflows/build-multi-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
python-version: [3.11]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/init-environment
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies for doxygen
Expand All @@ -174,7 +174,7 @@ jobs:
python-version: [3.11]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/init-environment
Expand Down Expand Up @@ -288,7 +288,7 @@ jobs:
artifacts: target/AYAB-${{ steps.vars.outputs.tag }}.exe
artifactContentType: application/exe
replacesArtifacts: true
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: AYAB-${{ steps.vars.outputs.tag }}.exe
path: target/AYAB-${{ steps.vars.outputs.tag }}.exe
Expand All @@ -302,7 +302,7 @@ jobs:
python-version: [3.11]
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- uses: ./.github/actions/init-environment
Expand Down Expand Up @@ -410,7 +410,7 @@ jobs:
artifacts: target/AYAB-${{ steps.vars.outputs.tag }}.dmg
artifactContentType: application/dmg
replacesArtifacts: true
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: AYAB-${{ steps.vars.outputs.tag }}.dmg
path: target/AYAB-${{ steps.vars.outputs.tag }}.dmg
Expand All @@ -425,7 +425,7 @@ jobs:
python-version: [3.11]
steps:
- name: Checkout repo into AppDir
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
Expand Down Expand Up @@ -579,7 +579,7 @@ jobs:
artifacts: AYAB-${{ steps.vars.outputs.tag }}-x86_64.AppImage
artifactContentType: application/AppImage
replacesArtifacts: true
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: AYAB-${{ steps.vars.outputs.tag }}-x86_64.AppImage
path: AYAB-${{ steps.vars.outputs.tag }}-x86_64.AppImage

0 comments on commit c701f4c

Please sign in to comment.