Skip to content

Commit

Permalink
bump: version 3.3.3 → 3.3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
cesarcoatl committed Sep 11, 2024
1 parent 121e375 commit 5153805
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .cz.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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 }}"
Expand Down Expand Up @@ -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 }}
```
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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'
Expand Down

0 comments on commit 5153805

Please sign in to comment.