This is an automated email from the ASF dual-hosted git repository.

OpenPj pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/manifoldcf.git


The following commit(s) were added to refs/heads/trunk by this push:
     new ed805b7a2 Fix for the GitHub workflows
ed805b7a2 is described below

commit ed805b7a2bbfbe01c74548aa7927928c23e3ea7a
Author: Piergiorgio Lucidi <[email protected]>
AuthorDate: Thu Jul 30 12:45:23 2026 +0200

    Fix for the GitHub workflows
---
 .github/workflows/create-docker-image.yml          | 13 +++++------
 .github/workflows/create-release-candidate.yml     | 27 +++++++++++-----------
 .github/workflows/license-check.yml                |  4 ++--
 .github/workflows/publish-maven-release.yml        |  4 ++--
 .github/workflows/publish-maven-snapshot.yml       |  4 ++--
 .../workflows/publish-release-candidate-svn.yml    |  4 ++--
 6 files changed, 27 insertions(+), 29 deletions(-)

diff --git a/.github/workflows/create-docker-image.yml 
b/.github/workflows/create-docker-image.yml
index b40ee1f8e..54f8a4e51 100644
--- a/.github/workflows/create-docker-image.yml
+++ b/.github/workflows/create-docker-image.yml
@@ -89,20 +89,19 @@ jobs:
           echo "version=${1##*-}" >> $GITHUB_OUTPUT
           
       - name: Checkout for legacy versions of ManifoldCF
-        uses: actions/[email protected]
+        uses: actions/[email protected]
         with:
           ref: release-${{ steps.mcf.outputs.release }}
       
       - name: Set up OpenJDK 25 Temurin x64
-        uses: oracle-actions/[email protected]
+        uses: actions/setup-java@v4
         with:
-          website: 'jdk.java.net'
-          version: '25'
+          java-version: '25'
           distribution: 'temurin'
           architecture: x64
           cache: maven
           gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
-          gpg-passphrase: GPG_PASSPHRASE
+          gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
       
       - name: Fix Nuxeo URL
         run: | 
@@ -122,7 +121,7 @@ jobs:
         uses: 
docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c
       
       - name: Login to Docker Hub
-        uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c
+        uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0
         with:
           username: ${{ secrets.DOCKERHUB_USER }}
           password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -217,7 +216,7 @@ jobs:
         uses: 
docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c
       
       - name: Login to Docker Hub
-        uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c
+        uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0
         with:
           username: ${{ secrets.DOCKERHUB_USER }}
           password: ${{ secrets.DOCKERHUB_TOKEN }}
diff --git a/.github/workflows/create-release-candidate.yml 
b/.github/workflows/create-release-candidate.yml
index 1928d884c..88e3bee81 100644
--- a/.github/workflows/create-release-candidate.yml
+++ b/.github/workflows/create-release-candidate.yml
@@ -36,18 +36,17 @@ jobs:
         run: echo "Starting Apache ManifoldCF workflow for building ${{ 
github.event.inputs.releasecandidatetag }}"
       
       - name: Checkout
-        uses: actions/[email protected]
+        uses: actions/[email protected]
       
       - name: Set up OpenJDK 25 Temurin x64
-        uses: oracle-actions/[email protected]
+        uses: actions/setup-java@v4
         with:
-          website: 'jdk.java.net'
-          version: '25'
+          java-version: '25'
           distribution: 'temurin'
           architecture: x64
           cache: maven
           gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
-          gpg-passphrase: GPG_PASSPHRASE
+          gpg-passphrase: ${{ secrets.GPG_PASSPHRASE }}
       
       - name: Get Maven POM version
         id: mavenProjectVersion
@@ -149,7 +148,7 @@ jobs:
           cp CHANGES.txt apache-manifoldcf-${{ 
steps.releaseVersion.outputs.version }}.CHANGES.txt
       
       - name: Upload artifacts - KEYS - text format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}.KEYS
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}.KEYS
@@ -165,7 +164,7 @@ jobs:
           asset_content_type: text/plain
       
       - name: Upload artifacts - CHANGES
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}.CHANGES.txt
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}.CHANGES.txt
@@ -181,7 +180,7 @@ jobs:
           asset_content_type: text/plain
       
       - name: Upload artifacts - Binary - zip format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-bin.zip
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-bin.zip
@@ -197,7 +196,7 @@ jobs:
           asset_content_type: application/zip
       
       - name: Upload artifacts - Binary - tar.gz format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-bin.tar.gz
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-bin.tar.gz
@@ -213,7 +212,7 @@ jobs:
           asset_content_type: application/gzip
       
       - name: Upload artifacts - Lib - tar.gz format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-lib.tar.gz
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-lib.tar.gz
@@ -229,7 +228,7 @@ jobs:
           asset_content_type: application/gzip
       
       - name: Upload artifacts - Lib - zip format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-lib.zip
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-lib.zip
@@ -245,7 +244,7 @@ jobs:
           asset_content_type: application/zip
       
       - name: Upload artifacts - Source code - tar.gz format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-src.tar.gz
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-src.tar.gz
@@ -261,7 +260,7 @@ jobs:
           asset_content_type: application/gzip
       
       - name: Upload artifacts - Source code - zip format
-        uses: actions/[email protected]
+        uses: actions/upload-artifact@v4
         with:
           name: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-src.zip
           path: apache-manifoldcf-${{ steps.releaseVersion.outputs.version 
}}-src.zip
@@ -283,7 +282,7 @@ jobs:
         uses: 
docker/setup-buildx-action@bb05f3f5519dd87d3ba754cc423b652a5edd6d2c
       
       - name: Login to Docker Hub
-        uses: docker/login-action@371161bbe7024a29a25c5e19bfcbc0804fe9ad2c
+        uses: docker/login-action@af1e73f918a031802d376d3c8bbc3fe56130a9b0
         with:
           username: ${{ secrets.DOCKERHUB_USER }}
           password: ${{ secrets.DOCKERHUB_TOKEN }}
diff --git a/.github/workflows/license-check.yml 
b/.github/workflows/license-check.yml
index 3be54574d..075fe7d7f 100644
--- a/.github/workflows/license-check.yml
+++ b/.github/workflows/license-check.yml
@@ -26,10 +26,10 @@ jobs:
     runs-on: ubuntu-24.04
     steps: 
       - name: Checkout
-        uses: actions/[email protected]
+        uses: actions/[email protected]
       
       - name: Set up OpenJDK 25 Temurin x64
-        uses: actions/[email protected]
+        uses: actions/setup-java@v4
         with:
           java-version: '25'
           distribution: 'temurin'
diff --git a/.github/workflows/publish-maven-release.yml 
b/.github/workflows/publish-maven-release.yml
index c948c444e..d15b6198e 100644
--- a/.github/workflows/publish-maven-release.yml
+++ b/.github/workflows/publish-maven-release.yml
@@ -68,12 +68,12 @@ jobs:
     runs-on: ubuntu-24.04
     steps:
       - name: Checkout
-        uses: actions/[email protected]
+        uses: actions/[email protected]
         with:
           ref: ${{ github.event.inputs.release }}
       
       - name: Set up Java
-        uses: actions/[email protected]
+        uses: actions/setup-java@v4
         with:
           java-version: '25'
           distribution: 'temurin'
diff --git a/.github/workflows/publish-maven-snapshot.yml 
b/.github/workflows/publish-maven-snapshot.yml
index d382d6bec..8fdedb787 100644
--- a/.github/workflows/publish-maven-snapshot.yml
+++ b/.github/workflows/publish-maven-snapshot.yml
@@ -33,10 +33,10 @@ jobs:
     runs-on: ubuntu-24.04
     steps:
       - name: Checkout
-        uses: actions/[email protected]
+        uses: actions/[email protected]
       
       - name: Set up Java
-        uses: actions/[email protected]
+        uses: actions/setup-java@v4
         with:
           java-version: '25'
           distribution: 'temurin'
diff --git a/.github/workflows/publish-release-candidate-svn.yml 
b/.github/workflows/publish-release-candidate-svn.yml
index 65eba555e..0885b06fc 100644
--- a/.github/workflows/publish-release-candidate-svn.yml
+++ b/.github/workflows/publish-release-candidate-svn.yml
@@ -36,7 +36,7 @@ jobs:
     runs-on: ubuntu-24.04
     steps:
       - name: Checkout
-        uses: actions/[email protected]
+        uses: actions/[email protected]
         with:
           ref: ${{ github.event.inputs.RC_TAG }}
           
@@ -114,7 +114,7 @@ jobs:
           
       - name: Import GPG key
         id: import_gpg
-        uses: 
crazy-max/ghaction-import-gpg@111c56156bcc6918c056dbef52164cfa583dc549
+        uses: 
crazy-max/ghaction-import-gpg@2dc316deee8e90f13e1a351ab510b4d5bc0c82cd
         with:
           gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
           passphrase: ${{ secrets.GPG_PASSPHRASE }}

Reply via email to