From 647dbab45661fbc5dac81d58efa5fc5cf271f6ed Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Thu, 21 May 2026 09:39:37 +0200 Subject: [PATCH 1/5] Update latest-pytorch-support.yml update script path --- .github/workflows/latest-pytorch-support.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/latest-pytorch-support.yml b/.github/workflows/latest-pytorch-support.yml index f2438d8ffb..917a3a85ff 100644 --- a/.github/workflows/latest-pytorch-support.yml +++ b/.github/workflows/latest-pytorch-support.yml @@ -44,8 +44,8 @@ jobs: echo "new_pytorch=$(<.github/pytorch-release-versions/pytorch-latest.txt)" >> $GITHUB_ENV - name: Increment version run: | - chmod +x .github/workflows/increment_version.sh - echo "setup_pytorch=$(.github/workflows/increment_version.sh ${{ env.new_pytorch }})" >> $GITHUB_ENV + chmod +x .github/workflows/scripts/increment_version.sh + echo "setup_pytorch=$(.github/workflows/scripts/increment_version.sh ${{ env.new_pytorch }})" >> $GITHUB_ENV - name: Update pyproject.toml run: | sed -i '/torch~=/ s/'"${{ env.previous_pytorch }}"'/'"${{ env.setup_pytorch }}"'/g' pyproject.toml @@ -66,6 +66,6 @@ jobs: - [ ] update Nvidia and AMD Docker images on gitlab CI Auto-generated by [create-pull-request][1] [1]: https://github.com/peter-evans/create-pull-request - reviewers: ClaudiaComito, mtar, mrfh92 + reviewers: ClaudiaComito, mtar, JuanPedroGHM labels: backport stable, interoperability draft: true From 4dbd1955fdc7473b08e191f1c2d87ef1afb88325 Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Thu, 21 May 2026 10:22:05 +0200 Subject: [PATCH 2/5] Update latest-pytorch-support.yml --- .github/workflows/latest-pytorch-support.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/latest-pytorch-support.yml b/.github/workflows/latest-pytorch-support.yml index 917a3a85ff..952e436e50 100644 --- a/.github/workflows/latest-pytorch-support.yml +++ b/.github/workflows/latest-pytorch-support.yml @@ -44,8 +44,8 @@ jobs: echo "new_pytorch=$(<.github/pytorch-release-versions/pytorch-latest.txt)" >> $GITHUB_ENV - name: Increment version run: | - chmod +x .github/workflows/scripts/increment_version.sh - echo "setup_pytorch=$(.github/workflows/scripts/increment_version.sh ${{ env.new_pytorch }})" >> $GITHUB_ENV + chmod +x .github/scripts/increment_version.sh + echo "setup_pytorch=$(.github/scripts/increment_version.sh ${{ env.new_pytorch }})" >> $GITHUB_ENV - name: Update pyproject.toml run: | sed -i '/torch~=/ s/'"${{ env.previous_pytorch }}"'/'"${{ env.setup_pytorch }}"'/g' pyproject.toml From 0f7cfb7f10631364f7c8c01e2472e67d827b23f9 Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Thu, 21 May 2026 10:44:09 +0200 Subject: [PATCH 3/5] Update pytorch-latest-release.yml Fix if condition --- .github/workflows/pytorch-latest-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytorch-latest-release.yml b/.github/workflows/pytorch-latest-release.yml index 5e3900ff4a..d1f0d42eff 100644 --- a/.github/workflows/pytorch-latest-release.yml +++ b/.github/workflows/pytorch-latest-release.yml @@ -11,7 +11,7 @@ permissions: jobs: get-version: runs-on: ubuntu-latest - if: ${{ github.repository }} == 'hemlholtz-analytics/heat' + if: ${{ github.repository == 'hemlholtz-analytics/heat' }} steps: - name: Harden Runner uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1 From 77e5d83f8e9bf7c67d5dce8540772e40ce23b5d8 Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Thu, 21 May 2026 10:48:28 +0200 Subject: [PATCH 4/5] Update pytorch-latest-release.yml fix typo --- .github/workflows/pytorch-latest-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytorch-latest-release.yml b/.github/workflows/pytorch-latest-release.yml index d1f0d42eff..ba08f91cda 100644 --- a/.github/workflows/pytorch-latest-release.yml +++ b/.github/workflows/pytorch-latest-release.yml @@ -11,7 +11,7 @@ permissions: jobs: get-version: runs-on: ubuntu-latest - if: ${{ github.repository == 'hemlholtz-analytics/heat' }} + if: ${{ github.repository == 'helmholtz-analytics/heat' }} steps: - name: Harden Runner uses: step-security/harden-runner@a5ad31d6a139d249332a2605b85202e8c0b78450 # v2.19.1 From c434a57a489855f7de5be42ede832c29bd22202a Mon Sep 17 00:00:00 2001 From: Michael Tarnawa <18899420+mtar@users.noreply.github.com> Date: Thu, 21 May 2026 11:11:18 +0200 Subject: [PATCH 5/5] Update pytorch-latest-release.yml update deprecated command --- .github/workflows/pytorch-latest-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytorch-latest-release.yml b/.github/workflows/pytorch-latest-release.yml index ba08f91cda..5469fc6549 100644 --- a/.github/workflows/pytorch-latest-release.yml +++ b/.github/workflows/pytorch-latest-release.yml @@ -27,7 +27,7 @@ jobs: jq -r ".tag_name" | tr -d 'v' > .github/pytorch-release-versions/pytorch-latest.txt - name: Check if file has been modified id: git-check - run: echo "::set-output name=modified::$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")" + run: echo "modified=$([ -z "`git status --porcelain`" ] && echo "false" || echo "true")" >> $GITHUB_OUTPUT - name: Delete working branch if it already exists run: git push --delete origin ${{ env.working_branch }} || true - name: Commit latest PyTorch release version to new branch