From 51538053df5900df7a1fec49fa07948c20fb23f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9sar=20Rom=C3=A1n?= Date: Wed, 11 Sep 2024 11:05:45 -0700 Subject: [PATCH] =?UTF-8?q?bump:=20version=203.3.3=20=E2=86=92=203.3.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .cz.yaml | 2 +- CHANGELOG.md | 6 ++++++ README.md | 12 ++++++------ 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.cz.yaml b/.cz.yaml index fa633fb..c236499 100644 --- a/.cz.yaml +++ b/.cz.yaml @@ -4,7 +4,7 @@ commitizen: name: cz_conventional_commits tag_format: v$version update_changelog_on_bump: true - version: 3.3.3 + version: 3.3.4 version_files: - README.md version_scheme: semver diff --git a/CHANGELOG.md b/CHANGELOG.md index b385ed5..4d3fa90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v3.3.4 (2024-09-11) + +### Fix + +- **pr-create**: fix syntax for delete-branch input (#73) + ## v3.3.3 (2024-09-10) ### Refactor diff --git a/README.md b/README.md index 909c1cc..9040753 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ jobs: - name: Import GPG key id: gpg-import - uses: coatl-dev/actions/gpg-import@v3.3.3 + uses: coatl-dev/actions/gpg-import@v3.3.4 with: passphrase: ${{ secrets.GPG_PASSPHRASE }} private-key: ${{ secrets.GPG_PRIVATE_KEY }} @@ -113,14 +113,14 @@ jobs: uses: actions/checkout@v4 - name: pip-compile-27 - uses: coatl-dev/actions/pip-compile@v3.3.3 + uses: coatl-dev/actions/pip-compile@v3.3.4 with: path: "${{ env.REQUIREMENTS_PATH }}" python-version: '2.7.18' - name: Detect changes id: git-diff - uses: coatl-dev/actions/simple-git-diff@v3.3.3 + uses: coatl-dev/actions/simple-git-diff@v3.3.4 with: path: "${{ env.REQUIREMENTS_PATH }}" @@ -155,7 +155,7 @@ Add this step to your workflow: ```yml - name: Create Pull Request - uses: coatl-dev/actions/pr-create@v3.3.3 + uses: coatl-dev/actions/pr-create@v3.3.4 with: gh-token: ${{ secrets.GH_TOKEN }} ``` @@ -190,7 +190,7 @@ Set up a specific version of Jython and add the command-line tools to the PATH. ```yml - name: Set up Jython - uses: coatl-dev/actions/setup-jython@v3.3.3 + uses: coatl-dev/actions/setup-jython@v3.3.4 with: jython-version: '2.7.3' - run: jython my_script.py @@ -233,7 +233,7 @@ jobs: - name: Detect changes id: git-diff - uses: coatl-dev/actions/simple-git-diff@v3.3.3 + uses: coatl-dev/actions/simple-git-diff@v3.3.4 with: path: 'README.md'