Merge branch 'master' into patch-2

This commit is contained in:
Christian Dräger 2020-01-20 09:40:37 +01:00 committed by GitHub
commit 8514562d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -32,6 +32,7 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de
- [Machine Learning Ops](#machine-learning-ops)
- [Performance Monitoring](#performance-monitoring)
- [Cheat Sheet](#cheat-sheet)
- [Build](#build)
- [Tutorials](#tutorials)
## Official Resources
@ -199,7 +200,8 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [Get latest SemVer and branch name given a search string](https://github.com/jessicalostinspace/github-action-get-regex-branch)
- [Cut Release Branch](https://github.com/jessicalostinspace/cut-release-action) - Cuts a release branch given a branch prefix and optional semantic version.
- [Generate terraform documentation](https://github.com/Dirrk/terraform-docs) - Uses terraform-docs to generate docs for terraform modules.
- [Read Properties](https://github.com/christian-draeger/read-properties) - Read values from `.properties` files
- [Increment Semantic Version](https://github.com/christian-draeger/increment-semantic-version) - Bump a given semantic version (SemVer), depending on given release type.
- [Read Properties](https://github.com/christian-draeger/read-properties) - Read values from `.properties` files.
### Testing and Linting
@ -223,6 +225,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [Lint a Dockerfile using Hadolint](https://github.com/cds-snc/github-actions/tree/master/docker-lint)
- [Lint terraform files using tflint](https://github.com/cds-snc/github-actions/tree/master/tf-lint)
- [Lint terraform files using tflint, with reviewdog output on the PR](https://github.com/reviewdog/action-tflint)
- [Run tfsec, with reviewdog output on the PR](https://github.com/reviewdog/action-tfsec)
- [Validate Puppet modules using Puppet PDK](https://github.com/mpepping/github-actions/tree/master/pdk-validate)
- [Scan git commits for secrets with gitleaks](https://github.com/eshork/gitleaks-action)
- [Scan code with SonarCloud](https://github.com/sonarsource/sonarcloud-github-action)
@ -426,6 +429,11 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [GitHub Actions Branding Cheat Sheet](https://haya14busa.github.io/github-action-brandings/)
### Build
- [run-cmake](https://github.com/lukka/run-cmake) - Multi platform action to build C/C++ software with [CMake](https://cmake.org) and [Ninja](https://ninja-build.org/).
- [run-vcpkg](https://github.com/lukka/run-vcpkg) - Multi platform action to build and install C/C++ dependencies with [vcpkg](https://github.com/microsoft/vcpkg).
## Tutorials
- [Introducing GitHub Actions](https://css-tricks.com/introducing-github-actions/)