From bfe36dddb720017fb6f65b4a530e1842b3635874 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Tue, 11 Jun 2024 14:48:37 +1000 Subject: [PATCH] Update deprecated set-output Github command --- .github/workflows/ci-blenderbim-daily.yml | 4 ++-- .github/workflows/ci-ifcopenshell-python.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-blenderbim-daily.yml b/.github/workflows/ci-blenderbim-daily.yml index 0aeb7edff9..9755d68764 100644 --- a/.github/workflows/ci-blenderbim-daily.yml +++ b/.github/workflows/ci-blenderbim-daily.yml @@ -62,10 +62,10 @@ jobs: - run: echo ${{ env.DATE }} - name: Get current version id: version - run: echo "::set-output name=version::$(cat ../../VERSION)" + run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT - name: Get current date id: date - run: echo "::set-output name=date::$(date +'%y%m%d')" + run: echo "date=$(date +'%y%m%d')" >> $GITHUB_OUTPUT - name: Compile run: | cp -r src/blenderbim src/blenderbim_${{ matrix.config.short_name }}_${{ matrix.pyver }} && diff --git a/.github/workflows/ci-ifcopenshell-python.yml b/.github/workflows/ci-ifcopenshell-python.yml index 7d477f666f..9e8d5e933c 100644 --- a/.github/workflows/ci-ifcopenshell-python.yml +++ b/.github/workflows/ci-ifcopenshell-python.yml @@ -46,7 +46,7 @@ jobs: - run: echo ${{ env.DATE }} - name: Get current version id: version - run: echo "::set-output name=version::$(cat ../../VERSION)" + run: echo "version=$(cat VERSION)" >> $GITHUB_OUTPUT - name: Compile run: | cp -r src/ifcopenshell-python src/ifcopenshell_${{ matrix.config.short_name }}_${{ matrix.pyver }} &&