From 95be69ce41c1600e6ba3de08e5e4caeaf7a9c62e Mon Sep 17 00:00:00 2001 From: Egor_P <egor@parity.io> Date: Fri, 28 Feb 2025 10:26:07 +0100 Subject: [PATCH] [Release|CI/CD] Update pgpgkms to the latest version (#7745) This PR updates `pgpgkms`, tool to sign releases, to the latest version to fix the issue wiht the `debian` publishing form the pipeline. Address: https://github.com/paritytech/release-engineering/issues/248 --- .github/workflows/release-10_branchoff-stable.yml | 2 +- .github/workflows/release-11_rc-automation.yml | 2 +- .github/workflows/release-40_publish-deb-package.yml | 2 +- .github/workflows/release-reusable-rc-buid.yml | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-10_branchoff-stable.yml b/.github/workflows/release-10_branchoff-stable.yml index ced08da5a0a..2fad2dbcf1e 100644 --- a/.github/workflows/release-10_branchoff-stable.yml +++ b/.github/workflows/release-10_branchoff-stable.yml @@ -50,7 +50,7 @@ jobs: - name: Install pgpkkms run: | # Install pgpkms that is used to sign commits - pip install git+https://github.com/paritytech-release/pgpkms.git@5a8f82fbb607ea102d8c178e761659de54c7af69 + pip install git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed - name: Generate content write token for the release automation id: generate_write_token diff --git a/.github/workflows/release-11_rc-automation.yml b/.github/workflows/release-11_rc-automation.yml index 0be671185c7..ffd780d5f1d 100644 --- a/.github/workflows/release-11_rc-automation.yml +++ b/.github/workflows/release-11_rc-automation.yml @@ -34,7 +34,7 @@ jobs: - name: Install pgpkkms run: | # Install pgpkms that is used to sign commits - pip install git+https://github.com/paritytech-release/pgpkms.git@5a8f82fbb607ea102d8c178e761659de54c7af69 + pip install git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed - name: Generate content write token for the release automation id: generate_write_token diff --git a/.github/workflows/release-40_publish-deb-package.yml b/.github/workflows/release-40_publish-deb-package.yml index 3c5411ab16f..60ab1c7b729 100644 --- a/.github/workflows/release-40_publish-deb-package.yml +++ b/.github/workflows/release-40_publish-deb-package.yml @@ -82,7 +82,7 @@ jobs: - name: Install pgpkkms run: | # Install pgpkms that is used to sign built artifacts - python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@1f8555426662ac93a3849480a35449f683b1c89f" + python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed" echo "PGPKMS_REPREPRO_PATH=$(which pgpkms-reprepro)" >> $GITHUB_ENV - name: Install awscli diff --git a/.github/workflows/release-reusable-rc-buid.yml b/.github/workflows/release-reusable-rc-buid.yml index aea9cedba54..a615826addc 100644 --- a/.github/workflows/release-reusable-rc-buid.yml +++ b/.github/workflows/release-reusable-rc-buid.yml @@ -82,7 +82,7 @@ jobs: - name: Install pgpkkms run: | # Install pgpkms that is used to sign built artifacts - python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@5a8f82fbb607ea102d8c178e761659de54c7af69" + python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed" which pgpkms - name: Checkout sources @@ -204,7 +204,7 @@ jobs: - name: Install pgpkkms run: | # Install pgpkms that is used to sign built artifacts - python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@5a8f82fbb607ea102d8c178e761659de54c7af69" --break-system-packages + python3 -m pip install "pgpkms @ git+https://github.com/paritytech-release/pgpkms.git@e7f806f99e9be5c52f0b4a536b7d4ef9c3e695ed" - name: Import gpg keys shell: bash -- GitLab