Skip to content

Commit 9ff999d

Browse files
Updated GH Actions to fix the nodejs 12 warning
1 parent 3ed9f96 commit 9ff999d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/build-macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020

2121
- name: Checkout
22-
uses: actions/checkout@v2
22+
uses: actions/checkout@v3
2323
with:
2424
submodules: 'true'
2525
fetch-depth: 0

.github/workflows/build-ubuntu.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
fi
3636
3737
- name: Checkout
38-
uses: actions/checkout@v2
38+
uses: actions/checkout@v3
3939
with:
4040
submodules: 'true'
4141
fetch-depth: 0
@@ -61,7 +61,7 @@ jobs:
6161
working-directory: ${{ github.workspace }}/_build
6262

6363
- name: Upload binaries
64-
uses: actions/upload-artifact@v2
64+
uses: actions/upload-artifact@v3
6565
with:
6666
name: fineftp-server-${{ matrix.os }}-${{ env.package_postfix }}
6767
path: ${{github.workspace}}/_build/_package/*.deb

.github/workflows/build-windows.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
}
3838
3939
- name: Checkout
40-
uses: actions/checkout@v2
40+
uses: actions/checkout@v3
4141
with:
4242
submodules: 'true'
4343
fetch-depth: 0
@@ -72,7 +72,7 @@ jobs:
7272
cmake --build ${{github.workspace}}/_build --config Debug --parallel
7373
cmake --build ${{github.workspace}}/_build --config Debug --target INSTALL
7474
- name: Upload binaries
75-
uses: actions/upload-artifact@v2
75+
uses: actions/upload-artifact@v3
7676
with:
7777
name: fineftp-server-win64-${{ matrix.library_type }}
7878
path: ${{github.workspace}}/${{env.INSTALL_PREFIX}}

0 commit comments

Comments
 (0)