From a69b0a7930184aed0b93f660c4ad894aeee31387 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Jul 2024 17:40:45 +0000 Subject: [PATCH 1/2] Bump crazy-max/ghaction-import-gpg from 1 to 6 Bumps [crazy-max/ghaction-import-gpg](https://github.com/crazy-max/ghaction-import-gpg) from 1 to 6. - [Release notes](https://github.com/crazy-max/ghaction-import-gpg/releases) - [Commits](https://github.com/crazy-max/ghaction-import-gpg/compare/v1...v6) --- updated-dependencies: - dependency-name: crazy-max/ghaction-import-gpg dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ubuntu-release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ubuntu-release.yml b/.github/workflows/ubuntu-release.yml index 311886d..22bb5f9 100644 --- a/.github/workflows/ubuntu-release.yml +++ b/.github/workflows/ubuntu-release.yml @@ -12,7 +12,7 @@ jobs: - name: Check out proper version of sources uses: actions/checkout@v1 - - uses: crazy-max/ghaction-import-gpg@v1 + - uses: crazy-max/ghaction-import-gpg@v6 env: GPG_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }} PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} From a2a7abf908d1b08e237e7505403dcd35206d8dec Mon Sep 17 00:00:00 2001 From: David Muckle Date: Thu, 18 Jul 2024 18:05:19 -0400 Subject: [PATCH 2/2] Use new inputs --- .github/workflows/ubuntu-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ubuntu-release.yml b/.github/workflows/ubuntu-release.yml index 22bb5f9..da96440 100644 --- a/.github/workflows/ubuntu-release.yml +++ b/.github/workflows/ubuntu-release.yml @@ -13,9 +13,9 @@ jobs: uses: actions/checkout@v1 - uses: crazy-max/ghaction-import-gpg@v6 - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_SIGNING_KEY }} - PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} + with: + gpg_private_key: ${{ secrets.GPG_SIGNING_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} - name: Check changelog for bumped version run: | grep -q ${{ github.event.release.tag_name }} debian/changelog || { echo "Version not bumped!" && exit 1; }