diff --git a/.github/workflows/build_documentation.yml b/.github/workflows/build_documentation.yml index b13471fbec9..9cbba20129d 100644 --- a/.github/workflows/build_documentation.yml +++ b/.github/workflows/build_documentation.yml @@ -54,7 +54,7 @@ jobs: - name: Retrieve PyAEDT version id: version run: | - echo "::set-output name=PYAEDT_VERSION::$(python -c "from pyaedt import __version__; print(__version__)")" + echo "PYAEDT_VERSION=$(python -c 'from pyaedt import __version__; print(__version__)')" >> $GITHUB_OUTPUT echo "PyAEDT version is: $(python -c "from pyaedt import __version__; print(__version__)")" # - name: Cache docs build directory diff --git a/.github/workflows/full_documentation.yml b/.github/workflows/full_documentation.yml index 7c8331ab2e8..75b1b983d83 100644 --- a/.github/workflows/full_documentation.yml +++ b/.github/workflows/full_documentation.yml @@ -34,7 +34,7 @@ jobs: # The type of runner that the job will run on name: full_documentation runs-on: [windows-latest, pyaedt] - timeout-minutes: 480 + timeout-minutes: 720 strategy: matrix: python-version: ['3.10'] @@ -65,7 +65,7 @@ jobs: id: version run: | testenv\Scripts\Activate.ps1 - echo "::set-output name=PYAEDT_VERSION::$(python -c "from pyaedt import __version__; print(__version__)")" + echo "PYAEDT_VERSION=$(python -c 'from pyaedt import __version__; print(__version__)')" >> $GITHUB_OUTPUT echo "PyAEDT version is: $(python -c "from pyaedt import __version__; print(__version__)")" - name: Create HTML Documentations diff --git a/.github/workflows/nightly-docs.yml b/.github/workflows/nightly-docs.yml index b70bbb0bf28..cff54ed66a2 100644 --- a/.github/workflows/nightly-docs.yml +++ b/.github/workflows/nightly-docs.yml @@ -24,7 +24,7 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: "3.10" - name: Install pyaedt run: | diff --git a/.github/workflows/wheelhouse.yml b/.github/workflows/wheelhouse.yml index 4f8e7747e86..3b8e2631955 100644 --- a/.github/workflows/wheelhouse.yml +++ b/.github/workflows/wheelhouse.yml @@ -54,7 +54,7 @@ jobs: - name: Retrieve PyAEDT version run: | testenv\Scripts\Activate.ps1 - echo "::set-output name=PYAEDT_VERSION::$(python -c "from pyaedt import __version__; print(__version__)")" + echo "PYAEDT_VERSION=$(python -c 'from pyaedt import __version__; print(__version__)')" >> $GITHUB_OUTPUT echo "PyAEDT version is: $(python -c "from pyaedt import __version__; print(__version__)")" id: version diff --git a/.github/workflows/wheelhouse_linux.yml b/.github/workflows/wheelhouse_linux.yml index 7bb53664da2..c3d61262668 100644 --- a/.github/workflows/wheelhouse_linux.yml +++ b/.github/workflows/wheelhouse_linux.yml @@ -50,7 +50,7 @@ jobs: - name: Retrieve PyAEDT version run: | - echo "::set-output name=PYAEDT_VERSION::$(python -c "from pyaedt import __version__; print(__version__)")" + echo "PYAEDT_VERSION=$(python -c 'from pyaedt import __version__; print(__version__)')" >> $GITHUB_OUTPUT echo "PyAEDT version is: $(python -c "from pyaedt import __version__; print(__version__)")" id: version