From d7927122b1b8a8955084f3bcce19c3acc8b5c30e Mon Sep 17 00:00:00 2001 From: Thomas Killen Date: Fri, 12 Sep 2025 12:18:02 +0200 Subject: [PATCH 1/4] feat: uses stackit.git.onstackit.cloud/actions/cache@v4 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f6725c7..3057726 100644 --- a/action.yml +++ b/action.yml @@ -58,7 +58,7 @@ runs: using: "composite" steps: - if: ${{ inputs.release-notes-assistant }} - uses: https://data.forgejo.org/actions/cache@v4 + uses: https://stackit.git.onstackit.cloud/actions/cache@v4 with: key: rna-${{ inputs.repo }} path: ${{ forge.action_path }}/rna -- 2.45.4 From 1884f9864c9875075686e0d0ac66c03a79be8477 Mon Sep 17 00:00:00 2001 From: Thomas Killen Date: Fri, 12 Sep 2025 14:19:43 +0200 Subject: [PATCH 2/4] feat: removed unnecessary step --- action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/action.yml b/action.yml index 3057726..9296c18 100644 --- a/action.yml +++ b/action.yml @@ -63,8 +63,10 @@ runs: key: rna-${{ inputs.repo }} path: ${{ forge.action_path }}/rna - - run: echo "${{ forge.action_path }}" >> $FORGEJO_PATH - shell: bash + # @STACKIT removed the following lines since they are not used by the action + # - run: echo "${{ forge.action_path }}" >> $FORGEJO_PATH + # shell: bash + - run: | export FORGEJO="${{ inputs.url }}" # A trailing / will mean http://forgejo//api/v1 is used -- 2.45.4 From 31993190e73f25504d03a8bd696fcc6e56be060b Mon Sep 17 00:00:00 2001 From: Thomas Killen Date: Fri, 12 Sep 2025 14:29:13 +0200 Subject: [PATCH 3/4] feat: fix path to action shell script --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 9296c18..c85411c 100644 --- a/action.yml +++ b/action.yml @@ -115,5 +115,5 @@ runs: echo -n "${{ inputs.gpg-passphrase }}" > $TMP_DIR/gpg-passphrase export GPG_PASSPHRASE="$TMP_DIR/gpg-passphrase" - forgejo-release.sh ${{ inputs.direction }} + ${{ forge.action_path }}/forgejo-release.sh ${{ inputs.direction }} shell: bash -- 2.45.4 From bb419b584745c9a66e511b694610ea325e1fde62 Mon Sep 17 00:00:00 2001 From: Thomas Killen Date: Fri, 12 Sep 2025 14:38:02 +0200 Subject: [PATCH 4/4] feat: use explicit path to forgejo-release.sh --- action.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/action.yml b/action.yml index c85411c..eca6d23 100644 --- a/action.yml +++ b/action.yml @@ -63,10 +63,6 @@ runs: key: rna-${{ inputs.repo }} path: ${{ forge.action_path }}/rna - # @STACKIT removed the following lines since they are not used by the action - # - run: echo "${{ forge.action_path }}" >> $FORGEJO_PATH - # shell: bash - - run: | export FORGEJO="${{ inputs.url }}" # A trailing / will mean http://forgejo//api/v1 is used -- 2.45.4