From 17dfe4cb90b020b279647609c79afa0ba8163530 Mon Sep 17 00:00:00 2001 From: David Knaack Date: Sat, 9 Dec 2023 14:06:34 +0100 Subject: [PATCH] ci: update release-please to v4 (#5619) * build(deps): update google-github-actions/release-please-action action to v4 * move `draft` option to config file --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/release.yml | 3 +-- release-please-config.json | 4 ++++ 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 release-please-config.json diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 20ef4ed0..ba52a75b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,12 +20,11 @@ jobs: release_created: ${{ steps.release.outputs.release_created }} tag_name: ${{ steps.release.outputs.tag_name }} steps: - - uses: google-github-actions/release-please-action@v3 + - uses: google-github-actions/release-please-action@v4 id: release with: token: ${{ secrets.GITHUB_TOKEN }} release-type: rust - draft: true # Build sources for every OS github_build: diff --git a/release-please-config.json b/release-please-config.json new file mode 100644 index 00000000..0a580e7e --- /dev/null +++ b/release-please-config.json @@ -0,0 +1,4 @@ +{ + "$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json", + "draft": true +}