diff --git a/.github/os-git-actions/setup-gpg/action.yml b/.github/os-git-actions/setup-gpg/action.yml index 59cb74a843..ca8bd97b2c 100644 --- a/.github/os-git-actions/setup-gpg/action.yml +++ b/.github/os-git-actions/setup-gpg/action.yml @@ -1,14 +1,5 @@ name: 'setup-gpg' description: 'Prepare to get following commits signed' -inputs: - gpgPriv: - description: 'GPG Private key' - required: true - default: '' - gpgPassPhrase: - description: 'GPG passphrase' - required: false - default: '""' runs: using: composite diff --git a/.github/os-git-actions/signed-commit/action.yml b/.github/os-git-actions/signed-commit/action.yml index f200b112d8..6dfad31142 100644 --- a/.github/os-git-actions/signed-commit/action.yml +++ b/.github/os-git-actions/signed-commit/action.yml @@ -13,23 +13,12 @@ inputs: description: 'Defines if a `git add.` should be made or not.' required: false default: false - gpgPriv: - description: 'GPG Private key' - required: true - default: '' - gpgPassPhrase: - description: 'GPG passphrase' - required: false - default: '""' runs: using: composite steps: - name: Setup GPG to sign commits uses: ./.github/os-git-actions/setup-gpg/ - with: - gpgPriv: ${{ inputs.gpgPriv }} - gpgPassPhrase: ${{ inputs.gpgPassPhrase }} - name: Perform git commit uses: ./.github/os-git-actions/manual-commit/ diff --git a/.github/workflows/PreRelease.yml b/.github/workflows/PreRelease.yml index 516514ab8c..46e6dcba34 100644 --- a/.github/workflows/PreRelease.yml +++ b/.github/workflows/PreRelease.yml @@ -119,5 +119,3 @@ jobs: branch: dev message: 'Updated into v${{ inputs.new-dev-release }} [skip ci]' newFiles: true - gpgPriv: ${{ secrets.GPG_SIGN_KEY }} - gpgPassPhrase: ${{ secrets.GPG_PASSPHRASE }}