diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3858b4b..d353063 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -150,7 +150,7 @@ jobs: - name: Import GPG key id: import_gpg - uses: crazy-max/ghaction-import-gpg@v4 + uses: crazy-max/ghaction-import-gpg@v5 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PGP_PASS }} diff --git a/ci-release.sbt b/ci-release.sbt index 2cf33e3..4f411f9 100644 --- a/ci-release.sbt +++ b/ci-release.sbt @@ -25,7 +25,7 @@ ThisBuild / githubWorkflowPublish := Seq( ) ThisBuild / githubWorkflowPublishCond := Some("github.actor != 'mergify[bot]'") ThisBuild / githubWorkflowPublishPreamble += WorkflowStep.Use( - ref = UseRef.Public("crazy-max", "ghaction-import-gpg", "v4"), + ref = UseRef.Public("crazy-max", "ghaction-import-gpg", "v5"), id = Some("import_gpg"), name = Some("Import GPG key"), params = Map("gpg_private_key" -> "${{ secrets.GPG_PRIVATE_KEY }}", "passphrase" -> "${{ secrets.PGP_PASS }}")