Skip to content

Commit

Permalink
Updated GH Actions to fix the nodejs 12 warning
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianReimold committed Nov 2, 2022
1 parent 3ed9f96 commit 9ff999d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
fi
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'
fetch-depth: 0
Expand All @@ -61,7 +61,7 @@ jobs:
working-directory: ${{ github.workspace }}/_build

- name: Upload binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: fineftp-server-${{ matrix.os }}-${{ env.package_postfix }}
path: ${{github.workspace}}/_build/_package/*.deb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
}
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'
fetch-depth: 0
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
cmake --build ${{github.workspace}}/_build --config Debug --parallel
cmake --build ${{github.workspace}}/_build --config Debug --target INSTALL
- name: Upload binaries
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: fineftp-server-win64-${{ matrix.library_type }}
path: ${{github.workspace}}/${{env.INSTALL_PREFIX}}
Expand Down

0 comments on commit 9ff999d

Please sign in to comment.