diff --git a/.github/workflows/pkg.yml b/.github/workflows/pkg.yml
index ea73f17..7dd65e6 100644
--- a/.github/workflows/pkg.yml
+++ b/.github/workflows/pkg.yml
@@ -46,7 +46,8 @@ jobs:
           make -s -C pkgs/${{ inputs.package }} version
           echo "VERSION=$(make -s -C pkgs/${{ inputs.package }} version)" >> $GITHUB_OUTPUT
       - name: Upload Release
-        uses: ncipollo/release-action@v1
+        # Use old version of the release-action, as newer releases use node-20 which is not compatible with CentOS 7
+        uses: ncipollo/release-action@8c78ca2662b7f5b8d5e5d5b5dbad3a5f38911fc0
         with:
           tag: ${{ inputs.package }}-${{ steps.build.outputs.VERSION }}
           allowUpdates: true