diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8f41980..dc28158 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -156,7 +156,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 afbf4d6..ac4c19d 100644 --- a/ci-release.sbt +++ b/ci-release.sbt @@ -33,7 +33,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 }}")