build(deps): bump go.opentelemetry.io/otel/sdk from 1.28.0 to 1.40.0 (#6014)
Bumps go.opentelemetry.io/otel/sdk from 1.28.0 to 1.40.0.
updated-dependencies:
- dependency-name: go.opentelemetry.io/otel/sdk dependency-version: 1.40.0 dependency-type: indirect …
Signed-off-by: dependabot[bot] support@github.com Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
版权所有:中国计算机学会技术支持:开源发展技术委员会
京ICP备13000930号-9
京公网安备 11010802032778号
Overview

Run your GitHub Actions locally! Why would you want to do this? Two reasons:
.github/workflows/files (or for any changes to embedded GitHub actions), you can useactto run the actions locally. The environment variables and filesystem are all configured to match what GitHub provides.act, you can use the GitHub Actions defined in your.github/workflows/to replace yourMakefile!How Does It Work?
When you run
actit reads in your GitHub Actions from.github/workflows/and determines the set of actions that need to be run. It uses the Docker API to either pull or build the necessary images, as defined in your workflow files and finally determines the execution path based on the dependencies that were defined. Once it has the execution path, it then uses the Docker API to run containers for each action based on the images prepared earlier. The environment variables and filesystem are all configured to match what GitHub provides.Let’s see it in action with a sample repo!
Act User Guide
Please look at the act user guide for more documentation.
Support
Need help? Ask in discussions!
Contributing
Want to contribute to act? Awesome! Check out the contributing guidelines to get involved.
Manually building from source
git clone git@github.com:nektos/act.gitmake testmake install