Updated workflows #12
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request introduces several improvements across workflow configurations and Go code. Key changes include the addition of a new GitHub Actions workflow for automated releases, updates to existing workflows for broader compatibility and tool upgrades, and enhanced error handling in Go functions.
Workflow Enhancements:
.github/workflows/changelog.yml
workflow to automate GitHub releases. This workflow triggers on version tags, generates a changelog, and creates a release usingmikepenz/release-changelog-builder-action
andsoftprops/action-gh-release
..github/workflows/go.yml
and.github/workflows/license_go.yml
to include themaster
branch as a trigger for workflows, in addition tomain
. [1] [2]golangci-lint-action
in.github/workflows/go.yml
from versionv6
tov8
for improved linting capabilities.testArguments: ./...
configuration from thego-test-action
in.github/workflows/go.yml
, simplifying the test job setup.Go Code Improvements:
itscope.go
by ensuring that errors fromresponse.Body.Close()
are captured and propagated in theGetAllProductTypes
andGetProductsFromQuery
functions. [1] [2]