You can specify the version you want to use by the github tag in this repo.
virtusize/actions-global-library/.github/workflows/changelog.yml@v2.0.0 If v2.0.0 exists as tag.
- Golang: compile + release notes
...
jobs:
...
release-notes:
name: 'Create release notes from CHANGELOG.md'
uses: virtusize/actions-global-library/.github/workflows/release-notes.yml
...
changelog:
name: 'Changelog release'
uses: virtusize/actions-global-library/.github/workflows/changelog.yml
needs: [release-notes, example-job]
with:
update-changelog: false
...