diff --git a/.github/workflows/greetings.md b/.github/workflows/greetings.md index 14a23680..cafa3b20 100644 --- a/.github/workflows/greetings.md +++ b/.github/workflows/greetings.md @@ -39,7 +39,7 @@ permissions: jobs: greetings: - uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.22.3 + uses: hoverkraft-tech/ci-github-common/.github/workflows/greetings.yml@0.23.0 secrets: # Token for the repository. # See https://github.com/actions/first-interaction#usage diff --git a/.github/workflows/linter.md b/.github/workflows/linter.md index 76b8dc20..cd437ded 100644 --- a/.github/workflows/linter.md +++ b/.github/workflows/linter.md @@ -44,7 +44,7 @@ permissions: jobs: main: - uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.22.3 + uses: hoverkraft-tech/ci-github-common/.github/workflows/linter.yml@0.23.0 with: # Json array of runner(s) to use. # See . diff --git a/.github/workflows/need-fix-to-issue.md b/.github/workflows/need-fix-to-issue.md index 58010ceb..28e10298 100644 --- a/.github/workflows/need-fix-to-issue.md +++ b/.github/workflows/need-fix-to-issue.md @@ -43,7 +43,7 @@ permissions: jobs: main: - uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.22.3 + uses: hoverkraft-tech/ci-github-common/.github/workflows/need-fix-to-issue.yml@0.23.0 with: manual-commit-ref: ${{ inputs.manual-commit-ref }} manual-base-ref: ${{ inputs.manual-base-ref }} diff --git a/.github/workflows/semantic-pull-request.md b/.github/workflows/semantic-pull-request.md index bc892c97..1f2b737f 100644 --- a/.github/workflows/semantic-pull-request.md +++ b/.github/workflows/semantic-pull-request.md @@ -39,7 +39,7 @@ permissions: jobs: main: - uses: hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@0.22.3 + uses: hoverkraft-tech/ci-github-common/.github/workflows/semantic-pull-request.yml@0.23.0 secrets: # Token for the repository. # Default GITHUB_TOKEN diff --git a/.github/workflows/stale.md b/.github/workflows/stale.md index 49f0088a..b387b399 100644 --- a/.github/workflows/stale.md +++ b/.github/workflows/stale.md @@ -30,7 +30,7 @@ permissions: jobs: main: - uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.22.3 + uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.23.0 # Optional customizations. with: diff --git a/actions/checkout/README.md b/actions/checkout/README.md index 4d311c2c..6aee6c02 100644 --- a/actions/checkout/README.md +++ b/actions/checkout/README.md @@ -36,7 +36,7 @@ permissions: ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: Number of commits to fetch. 0 indicates all history for all # branches and tags. See diff --git a/actions/create-and-merge-pull-request/README.md b/actions/create-and-merge-pull-request/README.md index 3eb5aab3..02379f92 100644 --- a/actions/create-and-merge-pull-request/README.md +++ b/actions/create-and-merge-pull-request/README.md @@ -29,7 +29,7 @@ See [Allow GitHub Actions to create and approve pull requests](https://docs.gith ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: GitHub token for creating and merging pull request (permissions # contents: write and pull-requests: write). See diff --git a/actions/create-or-update-comment/README.md b/actions/create-or-update-comment/README.md index d7952678..028f3ae6 100644 --- a/actions/create-or-update-comment/README.md +++ b/actions/create-or-update-comment/README.md @@ -35,7 +35,7 @@ permissions: ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: The comment title. Must be static and unique, will be used to # retrieve the comment if exists already. diff --git a/actions/get-github-actions-bot-user/README.md b/actions/get-github-actions-bot-user/README.md index 2af3eb23..b888ed66 100644 --- a/actions/get-github-actions-bot-user/README.md +++ b/actions/get-github-actions-bot-user/README.md @@ -26,7 +26,7 @@ Action to get the GitHub Actions bot user informations. Usefull to commit, comme ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: ``` diff --git a/actions/get-issue-number/README.md b/actions/get-issue-number/README.md index 14e311cb..7f56d022 100644 --- a/actions/get-issue-number/README.md +++ b/actions/get-issue-number/README.md @@ -26,7 +26,7 @@ Action to get Pull request or issue number ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: ``` diff --git a/actions/get-matrix-outputs/README.md b/actions/get-matrix-outputs/README.md index b73c9abd..e227ec29 100644 --- a/actions/get-matrix-outputs/README.md +++ b/actions/get-matrix-outputs/README.md @@ -27,7 +27,7 @@ Download matrix ouputs from artifacts, because GitHub Action does not handle job ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: The name of the artifact to download. # diff --git a/actions/repository-owner-is-organization/README.md b/actions/repository-owner-is-organization/README.md index 08daac54..750a00f7 100644 --- a/actions/repository-owner-is-organization/README.md +++ b/actions/repository-owner-is-organization/README.md @@ -26,7 +26,7 @@ Action to check if the repository owner is an organization. ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: GitHub token for fetching users API. # diff --git a/actions/set-matrix-output/README.md b/actions/set-matrix-output/README.md index 1eab7e78..4daa7522 100644 --- a/actions/set-matrix-output/README.md +++ b/actions/set-matrix-output/README.md @@ -31,7 +31,7 @@ This strategy effectively prevents any clashes or overwrites, maintaining the in ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: The matrix output to set. # diff --git a/actions/slugify/README.md b/actions/slugify/README.md index 812f4e6d..ae87e2e3 100644 --- a/actions/slugify/README.md +++ b/actions/slugify/README.md @@ -26,7 +26,7 @@ Action to slugify a given string value ```yaml -- uses: hoverkraft-tech/ci-github-common@0.22.3 +- uses: hoverkraft-tech/ci-github-common@0.23.0 with: # Description: The value to slugify #