3131 - name : Clone the repo
3232 with :
3333 submodules : recursive
34- uses : actions/checkout@v2
34+ uses : actions/checkout@v4
3535 - name : Run CI script
3636 # The script also runs golang-ci but it's ok: doesn't take too long and may be useful
3737 # to keep its linter errors in this log, too.
4242 runs-on : ubuntu-22.04
4343 steps :
4444 - name : Clone the repo
45- uses : actions/checkout@v2
45+ uses : actions/checkout@v4
4646 - name : Enable caching
47- uses : actions/cache@v2
47+ uses : actions/cache@v4
4848 with :
4949 key : ${{runner.os}}-android
5050 path : |
@@ -55,45 +55,45 @@ jobs:
5555 env :
5656 OS_NAME : linux
5757 - name : Upload APK
58- uses : actions/upload-artifact@v2
58+ uses : actions/upload-artifact@v4
5959 with :
6060 path : frontends/android/BitBoxApp/app/build/outputs/apk/debug/app-debug.apk
6161 name : BitBoxApp-android-${{github.sha}}.apk
6262 qt-linux :
6363 runs-on : ubuntu-22.04
6464 steps :
6565 - name : Clone the repo
66- uses : actions/checkout@v2
66+ uses : actions/checkout@v4
6767 with :
6868 submodules : recursive
6969 - name : Build Qt-Linux
7070 run : ./scripts/github-ci.sh qt-linux
7171 env :
7272 OS_NAME : linux
7373 - name : Upload AppImage
74- uses : actions/upload-artifact@v2
74+ uses : actions/upload-artifact@v4
7575 with :
7676 path : frontends/qt/build/linux/BitBoxApp-*.AppImage
7777 name : BitBoxApp-linux-${{github.sha}}.AppImage
7878 - name : Upload deb
79- uses : actions/upload-artifact@v2
79+ uses : actions/upload-artifact@v4
8080 with :
8181 path : frontends/qt/build/linux/bitbox_*.deb
8282 name : BitBoxApp-linux-${{github.sha}}.deb
8383 - name : Upload rpm
84- uses : actions/upload-artifact@v2
84+ uses : actions/upload-artifact@v4
8585 with :
8686 path : frontends/qt/build/linux/bitbox-*.rpm
8787 name : BitBoxApp-linux-${{github.sha}}.rpm
8888 macos :
8989 runs-on : macos-12
9090 steps :
9191 - name : Clone the repo
92- uses : actions/checkout@v2
92+ uses : actions/checkout@v4
9393 with :
9494 submodules : recursive
9595 - name : Install Go
96- uses : actions/setup-go@v2
96+ uses : actions/setup-go@v5
9797 with :
9898 go-version : 1.20.x
9999 - name : Build macOS app
@@ -107,7 +107,7 @@ jobs:
107107 ditto -c -k --keepParent BitBox.app ${{github.workspace}}/BitBoxApp-macos.zip;
108108 popd;
109109 - name : Upload app
110- uses : actions/upload-artifact@v2
110+ uses : actions/upload-artifact@v4
111111 with :
112112 path : BitBoxApp-macos.zip
113113 name : BitBoxApp-macos-${{github.sha}}.zip
0 commit comments