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 Sep 8, 2024
1 parent eb76772 commit 52f4d67
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 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"
18 changes: 9 additions & 9 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 @@ -149,7 +149,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 @@ -160,7 +160,7 @@ jobs:
mkdir -p docs/html
touch docs/html/.nojekyll
- name: Deploy to pages
uses: DenverCoder1/doxygen-github-pages-action@v1.3.0
uses: DenverCoder1/doxygen-github-pages-action@v1.3.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
Expand All @@ -176,7 +176,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 @@ -290,7 +290,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 @@ -304,7 +304,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 @@ -413,7 +413,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 @@ -428,7 +428,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 @@ -582,7 +582,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 52f4d67

Please sign in to comment.