1313 PYTHONPATH : /usr/local/lib/python2.7:/usr/local/lib/python2.7/dist-packages:/usr/local/lib/python2.7/site-packages
1414 steps :
1515 - name : Checkout
16- uses : actions/checkout@v2
16+ uses : actions/checkout@v4
1717 with :
1818 fetch-depth : 1
1919 - name : Dependencies
@@ -26,17 +26,17 @@ jobs:
2626 pip --disable-pip-version-check install git+https://github.com/vi/mkvparse.git
2727 fi
2828 if [ "$RUNNER_OS" == "macOS" ]; then
29- brew install libtool automake libxslt sqlite jansson libevent qt@5 sfk xmlstarlet ffmpeg
29+ brew install libtool automake libxslt jansson qt@5 sfk xmlstarlet ffmpeg
3030 sudo pip --disable-pip-version-check install --prefix /usr/local git+https://github.com/vi/mkvparse.git
3131 fi
3232 - name : Get ZenLib info
3333 id : zenlib-info
3434 run : |
35- echo "::set-output name= hash:: $(git ls-remote https://github.com/MediaArea/ZenLib.git HEAD | cut -f1)"
36- echo "::set-output name= path:: $(dirname $PWD)/ZenLib"
35+ echo "hash= $(git ls-remote https://github.com/MediaArea/ZenLib.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
36+ echo "path= $(dirname $PWD)/ZenLib" >> $GITHUB_OUTPUT
3737 - name : ZenLib cache
3838 id : zenlib-cache
39- uses : actions/cache@v2
39+ uses : actions/cache@v4
4040 with :
4141 path : ${{ steps.zenlib-info.outputs.path }}
4242 key : ${{ runner.os }}-ZenLib-${{ steps.zenlib-info.outputs.hash }}
@@ -52,11 +52,11 @@ jobs:
5252 - name : Get MediaInfoLib info
5353 id : mediainfolib-info
5454 run : |
55- echo "::set-output name= hash:: $(git ls-remote https://github.com/MediaArea/MediaInfoLib.git HEAD | cut -f1)"
56- echo "::set-output name= path:: $(dirname $PWD)/MediaInfoLib"
55+ echo "hash= $(git ls-remote https://github.com/MediaArea/MediaInfoLib.git HEAD | cut -f1)" >> $GITHUB_OUTPUT
56+ echo "path= $(dirname $PWD)/MediaInfoLib" >> $GITHUB_OUTPUT
5757 - name : MediaInfoLib cache
5858 id : mediainfolib-cache
59- uses : actions/cache@v2
59+ uses : actions/cache@v4
6060 with :
6161 path : ${{ steps.mediainfolib-info.outputs.path }}
6262 key : ${{ runner.os }}-MediaInfoLib-${{ steps.mediainfolib-info.outputs.hash }}
0 commit comments