diff --git a/.github/workflows/assets.yml b/.github/workflows/assets.yml index 90e1ba2..d222f5d 100644 --- a/.github/workflows/assets.yml +++ b/.github/workflows/assets.yml @@ -37,7 +37,8 @@ jobs: - name: Wheel path id: wheel working-directory: pybuild/dist/ - run: echo "##[set-output name=wheel;]$(ls *.whl)" + #run: echo "##[set-output name=wheel;]$(ls *.whl)" + run: echo "wheel=$(ls *.whl)" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v2 with: name: pypi-macos-py${{ matrix.python }} @@ -86,7 +87,8 @@ jobs: - name: Wheel path id: wheel working-directory: wheelhouse - run: echo "##[set-output name=wheel;]$(ls *.whl)" + #run: echo "##[set-output name=wheel;]$(ls *.whl)" + run: echo "wheel=$(ls *.whl)" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v2 with: name: pypi-linux-${{ matrix.cpython_version }} @@ -118,7 +120,7 @@ jobs: - uses: actions/setup-python@v2 with: python-version: ${{ matrix.python }} - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey key: ${{ runner.os }}-chocolatey-python-1 @@ -135,7 +137,8 @@ jobs: - name: Wheel path id: wheel working-directory: pybuild/dist/ - run: echo "##[set-output name=wheel;]$(Get-ChildItem -name *.whl)" + #run: echo "##[set-output name=wheel;]$(Get-ChildItem -name *.whl)" + run: echo "wheel=$(Get-ChildItem -name *.whl)" >> $GITHUB_OUTPUT - uses: actions/upload-artifact@v2 with: name: pypi-windows-py${{ matrix.python }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 01ad100..7af95c7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -38,7 +38,7 @@ jobs: - name: Install dependencies if: matrix.os == 'ubuntu-latest' run: sudo apt-get install -y swig - - uses: actions/cache@v2 + - uses: actions/cache@v3 if: matrix.os == 'windows-latest' with: path: C:\Users\runneradmin\AppData\Local\Temp\chocolatey