Skip to content

Commit

Permalink
chore: release 2.7.4
Browse files Browse the repository at this point in the history
  • Loading branch information
pow-devops2020 committed Sep 2, 2024
1 parent 0a21828 commit a832a67
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ outputs:
description: 'The next release version'
runs:
using: 'docker'
image: 'docker://ghcr.io/jenkins-x/jx-release-version:2.7.3'
image: 'docker://ghcr.io/jenkins-x/jx-release-version:2.7.4'
entrypoint: 'github-actions-entrypoint.sh'
env:
PREVIOUS_VERSION: ${{ inputs.previous-version }}
Expand Down
14 changes: 14 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Changes in version 2.7.4

### ci

* lint: bigger timeout (Vincent Behar)

### Bug Fixes

* allow an empty commit (Gareth Evans)

### Chores

* deps: bump github.com/go-git/go-git/v5 from 5.4.1 to 5.11.0 (dependabot[bot])
* upgrade image to 2.7.3 (jenkins-x-bot)
6 changes: 3 additions & 3 deletions pkg/tag/tag_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ func TestTag(t *testing.T) {
assert.NoError(t, err)

co := &git.CommitOptions{
All: true,
Author: &object.Signature{Name: "test"},
Committer: &object.Signature{Name: "test"},
All: true,
Author: &object.Signature{Name: "test"},
Committer: &object.Signature{Name: "test"},
AllowEmptyCommits: true,
}

Expand Down

0 comments on commit a832a67

Please sign in to comment.