Skip to content

Commit

Permalink
chore(action): bump version to v0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AtomicFS authored and github-actions[bot] committed Feb 11, 2025
1 parent 6d351b4 commit 450b3c1
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 3 deletions.
53 changes: 53 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,59 @@
All notable changes to this project will be documented in this file. See [conventional commits](https://www.conventionalcommits.org/) for commit guidelines.

- - -
## v0.13.0 - 2025-02-11
#### Bug Fixes
- **(ci)** go-test - (8bd0a26) - AtomicFS
- **(cmd)** path validation in JSON - (7eaa619) - AtomicFS
- **(cmd)** incorrect module path - (f1be43f) - AtomicFS
- **(test)** example Taskfile for Linux - (c10087d) - AtomicFS
- trivy false positive AVD-DS-0001 - (80c9b1d) - AtomicFS
#### Build system
- **(deps)** bump github.com/jedib0t/go-pretty/v6 - (51bac62) - dependabot[bot]
- **(deps)** bump github.com/alecthomas/kong in /cmd/firmware-action - (2e1b921) - dependabot[bot]
- **(deps)** bump docs/src/firmware-action-example - (7f0cc81) - dependabot[bot]
- **(deps)** update prettytable requirement in /.dagger-ci/daggerci - (3ab7832) - dependabot[bot]
- **(deps)** bump github.com/alecthomas/kong in /cmd/firmware-action - (5b8c9e6) - dependabot[bot]
- **(deps)** bump dagger.io/dagger in /cmd/firmware-action - (f966bba) - dependabot[bot]
#### Continuous Integration
- **(docker)** cleanup and update env vars - (6ba5218) - AtomicFS
- **(docker)** increase git commit sha slug to 12 characters - (b146d3d) - AtomicFS
- **(docker)** move container cleanup into separate workflow - (1ee5926) - AtomicFS
- **(labeler)** improve labeling for modules - (6126d79) - AtomicFS
- better caching for coreboot - (ad0ed57) - AtomicFS
- add u-boot example - (1e03ffe) - AtomicFS
- remove cache cleanup workflows - (82ef4b3) - AtomicFS
- cleanup coreboot toolchain PRs - (1acfd3a) - AtomicFS
#### Documentation
- add u-boot module config - (8a57478) - AtomicFS
- notes about discontinued containers - (1ecc76d) - AtomicFS
- update references to firmware-action-example - (f35bd79) - AtomicFS
- add notes about building contianers on the fly - (7861a25) - AtomicFS
- add link to toolchains repo - (5228032) - AtomicFS
- add link to firmware-action-example repo - (f1f0b73) - AtomicFS
#### Features
- **(ci)** automatically re-run failed container builds - (b7a842d) - AtomicFS
- **(cmd)** add support for u-boot - (a2b42d7) - AtomicFS
- **(cmd)** warning about using discontinued containers - (ed551ea) - AtomicFS
- **(cmd)** expose building contianers on the fly - (2af58ac) - AtomicFS
- **(docker)** add clang into uboot container - (6d351b4) - AtomicFS
- **(docker)** add support for DockerHub - (9421298) - AtomicFS
- **(docker)** add uboot container - (cf5668f) - AtomicFS
#### Miscellaneous Chores
- **(ci)** cleanup - (86e9cc6) - AtomicFS
- **(cmd)** fixup logging in tests - (5b573b8) - AtomicFS
- **(docker)** add new coreboot containers - (d56e2fa) - AtomicFS
- **(docker)** pass Taskfile CLI_ARGS to dagger-ci - (98831af) - AtomicFS
- **(docker)** update get_env_var_value - (cd3ced9) - AtomicFS
- **(docker)** remove ssh server from containers - (2ed69b8) - AtomicFS
- **(linter)** cspell - (24744df) - AtomicFS
- **(linter)** cspell - (55841a2) - AtomicFS
- **(linter)** cspell - (5dd031a) - AtomicFS
#### Tests
- **(example)** add u-boot into Taskfile for local run - (1600333) - AtomicFS

- - -

## v0.12.0 - 2025-01-27
#### Bug Fixes
- **(ci)** example runs on windows and macos - (b171694) - AtomicFS
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
version: '3'
vars:
SEMVER: 'v0.12.0'
SEMVER: 'v0.13.0'
GOLANG_CODE_PATH: 'cmd/firmware-action'

includes:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
steps:
- id: version
shell: bash
run: echo "version=v0.12.0" >> "${GITHUB_OUTPUT}"
run: echo "version=v0.13.0" >> "${GITHUB_OUTPUT}"

- id: arch
# This ARCH is used to fetch correct executable of firmware-action
Expand Down
2 changes: 1 addition & 1 deletion cmd/firmware-action/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func main() {
}
}

const firmwareActionVersion = "v0.12.0"
const firmwareActionVersion = "v0.13.0"

// CLI (Command Line Interface) holds data from environment
var CLI struct {
Expand Down

0 comments on commit 450b3c1

Please sign in to comment.