diff --git a/CHANGELOG.md b/CHANGELOG.md index 78ad977..0f4aece 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.2.2] - 2025-01-17 + +### Fixed + +- Add extraAttributes to action definition + ## [2.2.1] - 2025-01-06 ### Fixed @@ -162,7 +168,8 @@ permissions: - Support for `https` endpoints (proto over http). - Update to node 20.x -[unreleased]: https://github.com/corentinmusard/otel-cicd-action/compare/v2.2.1...HEAD +[unreleased]: https://github.com/corentinmusard/otel-cicd-action/compare/v2.2.2...HEAD +[2.2.2]: https://github.com/corentinmusard/otel-cicd-action/compare/v2.2.1...v2.2.2 [2.2.1]: https://github.com/corentinmusard/otel-cicd-action/compare/v2.2.0...v2.2.1 [2.2.0]: https://github.com/corentinmusard/otel-cicd-action/compare/v2.1.0...v2.2.0 [2.1.0]: https://github.com/corentinmusard/otel-cicd-action/compare/v2.0.0...v2.1.0 diff --git a/action.yml b/action.yml index 29c2392..c889dd9 100644 --- a/action.yml +++ b/action.yml @@ -24,7 +24,7 @@ inputs: description: Workflow Run ID to Export. Defaults to env.GITHUB_RUN_ID required: false extraAttributes: - description: Extra resource attributes + description: Extra resource attributes to add to each span required: false outputs: traceId: diff --git a/package-lock.json b/package-lock.json index bd2c723..fdbaa01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "otel-cicd-action", - "version": "2.0.0", + "version": "2.2.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "otel-cicd-action", - "version": "2.0.0", + "version": "2.2.2", "license": "MIT", "dependencies": { "@actions/core": "^1.11.1", diff --git a/package.json b/package.json index 9d8936b..362da59 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "private": true, "name": "otel-cicd-action", "type": "module", - "version": "2.0.0", + "version": "2.2.2", "description": "Github Action that export CI/CD workflows to any endpoint compatible with OpenTelemetry", "scripts": { "prepare": "husky",