From fc33d910e456aa22a598dfc6d6f3a280b1ec12ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 20 Mar 2022 15:57:06 +0000 Subject: [PATCH 001/170] github-actions(deps): bump ergebnis/.github from 1.3.2 to 1.4.0 Bumps ergebnis/.github from 1.3.2 to 1.4.0. --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 4cc5444..b04ba3b 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,23 +24,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.3.2" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.4.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.3.2" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.4.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.3.2" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.4.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.3.2" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.4.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5a18b72..a111c10 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.3.2" + uses: "ergebnis/.github/actions/github/release/create@1.4.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 39be0e6..f79facd 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.3.2" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.4.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 19ca4c1e111be3ccd0d27c53a3d7cea2972f5889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 30 Mar 2022 15:11:03 +0200 Subject: [PATCH 002/170] Fix: Capture response --- CHANGELOG.md | 14 ++++++++++++-- actions/github/release/create/action.yaml | 2 +- 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3283296..5a9d6e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.4.0...main`][1.4.0...main]. +For a full diff see [`1.4.1...main`][1.4.1...main]. + +## [`1.4.1`][1.4.1] + +For a full diff see [`1.4.0...1.4.1`][1.4.0...1.4.1]. + +### Fixed + +- Captured response in the composite action `github/release/create` ([#82]), by [@localheinz] ## [`1.4.0`][1.4.0] @@ -91,7 +99,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.3.0...1.3.1]: https://github.com/ergebnis/.github/compare/1.3.0...1.3.1 [1.3.1...1.3.2]: https://github.com/ergebnis/.github/compare/1.3.1...1.3.2 [1.3.2...1.4.0]: https://github.com/ergebnis/.github/compare/1.3.2...1.4.0 -[1.4.0...main]: https://github.com/ergebnis/.github/compare/1.4.0...main +[1.4.0...1.4.1]: https://github.com/ergebnis/.github/compare/1.4.0...1.4.1 +[1.4.1...main]: https://github.com/ergebnis/.github/compare/1.4.1...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 @@ -106,5 +115,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#76]: https://github.com/ergebnis/.github/pull/76 [#79]: https://github.com/ergebnis/.github/pull/79 [#80]: https://github.com/ergebnis/.github/pull/80 +[#82]: https://github.com/ergebnis/.github/pull/82 [@localheinz]: https://github.com/localheinz diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 1db5396..5b386be 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -34,7 +34,7 @@ runs: } try { - await github.rest.repos.createRelease({ + const response = await github.rest.repos.createRelease({ draft: false, generate_release_notes: true, name: process.env.RELEASE_TAG, From f0a94b29f0cc8582cee9767460c7712a1bb9e0d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 22:02:19 +0000 Subject: [PATCH 003/170] github-actions(deps): bump ergebnis/.github from 1.4.0 to 1.4.1 Bumps ergebnis/.github from 1.4.0 to 1.4.1. --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index b04ba3b..72bca86 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,23 +24,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.4.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.4.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.4.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.4.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.4.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.4.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.4.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.4.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a111c10..b858858 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.4.0" + uses: "ergebnis/.github/actions/github/release/create@1.4.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index f79facd..791c1dd 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.4.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.4.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From a270edeab495f809f2987b5a2be034e75967618f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Apr 2022 22:01:00 +0000 Subject: [PATCH 004/170] github-actions(deps): bump actions/checkout from 3.0.0 to 3.0.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.0.0...v3.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 7beb556..11d1786 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.0" + uses: "actions/checkout@v3.0.1" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.0" From bfab365e42779ddcc65416b50b4a4108dc3833f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Apr 2022 22:06:22 +0000 Subject: [PATCH 005/170] github-actions(deps): bump actions/checkout from 3.0.1 to 3.0.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.1 to 3.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.0.1...v3.0.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 11d1786..3642c95 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.1" + uses: "actions/checkout@v3.0.2" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.0" From d5fcd64b40ad8b6a1f662bf8bf898c6a07ed2c58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 May 2022 17:05:25 +0200 Subject: [PATCH 006/170] Fix: Require value for working-directory input --- CHANGELOG.md | 4 ++++ actions/composer/determine-cache-directory/action.yaml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a9d6e2..1865ca6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.4.1...main`][1.4.1...main]. +### Fixed + +- Required a value for the `working-directory` input of the composite action `composer/determine-cache-directory` ([#82]), by [@localheinz] + ## [`1.4.1`][1.4.1] For a full diff see [`1.4.0...1.4.1`][1.4.0...1.4.1]. diff --git a/actions/composer/determine-cache-directory/action.yaml b/actions/composer/determine-cache-directory/action.yaml index d563d86..908af41 100644 --- a/actions/composer/determine-cache-directory/action.yaml +++ b/actions/composer/determine-cache-directory/action.yaml @@ -11,7 +11,7 @@ inputs: working-directory: default: "." description: "Which directory to use as working directory" - required: false + required: true runs: using: "composite" From 45c93e2f3268b6e7c56bc9b294e00b2d90bd49ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 May 2022 17:21:55 +0200 Subject: [PATCH 007/170] Fix: Reference --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1865ca6..c5063bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -94,6 +94,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.3.1]: https://github.com/ergebnis/.github/releases/tag/1.3.1 [1.3.2]: https://github.com/ergebnis/.github/releases/tag/1.3.2 [1.4.0]: https://github.com/ergebnis/.github/releases/tag/1.4.0 +[1.4.1]: https://github.com/ergebnis/.github/releases/tag/1.4.1 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 From 58698f569c36181a18c6efba875b3ab22ad45de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 May 2022 17:18:37 +0200 Subject: [PATCH 008/170] Enhancement: Add composer/determine-root-version action --- CHANGELOG.md | 15 ++++++++-- .../determine-root-version/action.yaml | 29 +++++++++++++++++++ .../composer/determine-root-version/run.sh | 28 ++++++++++++++++++ 3 files changed, 70 insertions(+), 2 deletions(-) create mode 100644 actions/composer/determine-root-version/action.yaml create mode 100755 actions/composer/determine-root-version/run.sh diff --git a/CHANGELOG.md b/CHANGELOG.md index c5063bc..aa99848 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.4.1...main`][1.4.1...main]. +For a full diff see [`1.5.0...main`][1.5.0...main]. + +## [`1.5.0`][1.5.0] + +For a full diff see [`1.4.1...1.5.0`][1.4.1...1.5.0]. + +### Added + +- Added composite action `composer/determine-root-version` ([#87]), by [@localheinz] ### Fixed @@ -95,6 +103,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.3.2]: https://github.com/ergebnis/.github/releases/tag/1.3.2 [1.4.0]: https://github.com/ergebnis/.github/releases/tag/1.4.0 [1.4.1]: https://github.com/ergebnis/.github/releases/tag/1.4.1 +[1.5.0]: https://github.com/ergebnis/.github/releases/tag/1.5.0 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -105,7 +114,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.3.1...1.3.2]: https://github.com/ergebnis/.github/compare/1.3.1...1.3.2 [1.3.2...1.4.0]: https://github.com/ergebnis/.github/compare/1.3.2...1.4.0 [1.4.0...1.4.1]: https://github.com/ergebnis/.github/compare/1.4.0...1.4.1 -[1.4.1...main]: https://github.com/ergebnis/.github/compare/1.4.1...main +[1.4.1...1.5.0]: https://github.com/ergebnis/.github/compare/1.4.1...1.5.0 +[1.5.0...main]: https://github.com/ergebnis/.github/compare/1.5.0...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 @@ -121,5 +131,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#79]: https://github.com/ergebnis/.github/pull/79 [#80]: https://github.com/ergebnis/.github/pull/80 [#82]: https://github.com/ergebnis/.github/pull/82 +[#87]: https://github.com/ergebnis/.github/pull/87 [@localheinz]: https://github.com/localheinz diff --git a/actions/composer/determine-root-version/action.yaml b/actions/composer/determine-root-version/action.yaml new file mode 100644 index 0000000..016d19f --- /dev/null +++ b/actions/composer/determine-root-version/action.yaml @@ -0,0 +1,29 @@ +# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions +# https://getcomposer.org/doc/03-cli.md#composer-root-version + +name: "Determine composer root version" + +description: "Determines the composer root version and exports it as COMPOSER_ROOT_VERSION environment variable" + +inputs: + branch: + default: "main" + description: "Name of the branch, e.g. \"main\"" + required: true + working-directory: + default: "." + description: "Which directory to use as working directory" + required: true + +runs: + using: "composite" + + steps: + - name: "Determine composer root version" + env: + COMPOSER_DETERMINE_ROOT_VERSION_BRANCH: "${{ inputs.branch }}" + COMPOSER_DETERMINE_ROOT_VERSION_WORKING_DIRECTORY: "${{ inputs.working-directory }}" + run: "${{ github.action_path }}/run.sh" + shell: "bash" diff --git a/actions/composer/determine-root-version/run.sh b/actions/composer/determine-root-version/run.sh new file mode 100755 index 0000000..0eb7444 --- /dev/null +++ b/actions/composer/determine-root-version/run.sh @@ -0,0 +1,28 @@ +#!/usr/bin/env bash + +branch="${COMPOSER_DETERMINE_ROOT_VERSION_BRANCH}" +workingDirectory="${COMPOSER_DETERMINE_ROOT_VERSION_WORKING_DIRECTORY}" + +if [[ ! -d ${workingDirectory} ]]; then + echo "::error::The value for the \"working-directory\" input needs to be an existing directory. The directory \"${workingDirectory}\" does not exist." + + exit 1; +fi + +pathToComposerJsonFile="${COMPOSER_DETERMINE_ROOT_VERSION_WORKING_DIRECTORY}/composer.json" + +if [[ ! -f "${pathToComposerJsonFile}" ]]; then + echo "::error::A composer.json file could not be found in the directory \"${workingDirectory}\"." + + exit 1 +fi + +COMPOSER_ROOT_VERSION=$(jq --arg key "dev-${branch}" --raw-output '.["extra"]["branch-alias"][$key]' "${pathToComposerJsonFile}") + +if [[ null = "${COMPOSER_ROOT_VERSION}" ]]; then + echo "::error:A branch alias has not been defined in \"${pathToComposerJsonFile}\" for branch \"${branch}\"." + + exit 0 +fi + +echo "COMPOSER_ROOT_VERSION=${COMPOSER_ROOT_VERSION}" >> "${GITHUB_ENV}" From 08212f2bad7c8f74275aa4d9664dd18c3777c821 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 May 2022 17:41:21 +0200 Subject: [PATCH 009/170] Fix: Description --- .github/settings.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index fee26bd..5ec4346 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -65,7 +65,7 @@ repository: archived: false default_branch: "main" delete_branch_on_merge: true - description: ":heart: Provides default community health files for the @ergebnis organization." + description: ":heart: Provides default community health files and composite actions for the @ergebnis organization." has_downloads: false has_issues: false has_pages: false @@ -76,4 +76,4 @@ repository: # https://docs.github.com/en/rest/reference/repos#replace-all-repository-topics - topics: "default, community, health, files" + topics: "default, community, health, files, composite, actions" From c80fd8e756651c62f26356540ee413127ae12326 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Thu, 19 May 2022 17:49:03 +0200 Subject: [PATCH 010/170] Enhancement: Let dependabot update dependencies in composite actions --- .github/dependabot.yml | 66 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index f7872ee..9dc98f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -13,3 +13,69 @@ updates: package-ecosystem: "github-actions" schedule: interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/github/pull-request/add-assignee" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/github/pull-request/add-label-based-on-branch-name" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/github/pull-request/approve" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/github/pull-request/merge" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/github/pull-request/request-review" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/github/release/create" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" From 17101f35617f743fbd8932665b58137daca5baf7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:36 +0000 Subject: [PATCH 011/170] github-actions(deps): bump ergebnis/.github from 1.4.1 to 1.5.0 Bumps ergebnis/.github from 1.4.1 to 1.5.0. --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 72bca86..2eabbf9 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,23 +24,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.4.1" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.5.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.4.1" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.5.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.4.1" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.5.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.4.1" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.5.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b858858..3c9e23a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.4.1" + uses: "ergebnis/.github/actions/github/release/create@1.5.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 791c1dd..32959ca 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.4.1" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.5.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 11ad677bbe322e6fa68fe9a68cfb3c88a8550c45 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:37 +0000 Subject: [PATCH 012/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index 64ffb22..59fb11f 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" env: REVIEWER: "${{ inputs.reviewer }}" with: From 1c109c565e37bcc11353a3ceae64960ecbec6844 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:37 +0000 Subject: [PATCH 013/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 9faf8fc..cf43da5 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" env: ASSIGNEE: "${{ inputs.assignee }}" with: From fa377f7a10cfe2c836e8d7a7f36b20398d61e1bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:37 +0000 Subject: [PATCH 014/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 48c2df0..2da4ac3 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | From bb0fb453653708d0cf2f7d6b514ae491871abd90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:39 +0000 Subject: [PATCH 015/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 5b386be..b280315 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | From dd159fc5b06d2564991b31a5b59940cfe3909e34 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:44 +0000 Subject: [PATCH 016/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index e242d00..f825ac2 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 8ab0c2e16d5b6b63812b1827d0bf3fedbf49787b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 May 2022 15:51:48 +0000 Subject: [PATCH 017/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.0.0 to 6.1.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.0.0...v6.1.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index d6439c2..74f120e 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.0.0" + uses: "actions/github-script@v6.1.0" with: github-token: "${{ inputs.github-token }}" script: | From ad9e0939fc1ca80b8de4e7f4f102e834f3d17f63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 25 May 2022 08:19:10 +0200 Subject: [PATCH 018/170] Enhancement: Add @ergebnis to FUNDING.yml --- FUNDING.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/FUNDING.yml b/FUNDING.yml index 66085dc..4c8ee87 100644 --- a/FUNDING.yml +++ b/FUNDING.yml @@ -1 +1,3 @@ -github: "localheinz" +github: + - "ergebnis" + - "localheinz" From 912305103b3b019381597a7144524f970c82c4af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 12 Jul 2022 10:30:01 +0200 Subject: [PATCH 019/170] Fix: Condition --- CHANGELOG.md | 13 ++++++++++++- .../add-label-based-on-branch-name/action.yaml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa99848..9f64502 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.5.0...main`][1.5.0...main]. +## [`1.5.1`][1.5.1] + +For a full diff see [`1.5.0...1.5.1`][1.5.0...1.5.1]. + +### Added + +- Fixed a condition in `github/pull-request/add-label-based-on-branch-name` ([#96]), by [@localheinz] + ## [`1.5.0`][1.5.0] For a full diff see [`1.4.1...1.5.0`][1.4.1...1.5.0]. @@ -104,6 +112,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.4.0]: https://github.com/ergebnis/.github/releases/tag/1.4.0 [1.4.1]: https://github.com/ergebnis/.github/releases/tag/1.4.1 [1.5.0]: https://github.com/ergebnis/.github/releases/tag/1.5.0 +[1.5.1]: https://github.com/ergebnis/.github/releases/tag/1.5.1 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -115,7 +124,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.3.2...1.4.0]: https://github.com/ergebnis/.github/compare/1.3.2...1.4.0 [1.4.0...1.4.1]: https://github.com/ergebnis/.github/compare/1.4.0...1.4.1 [1.4.1...1.5.0]: https://github.com/ergebnis/.github/compare/1.4.1...1.5.0 -[1.5.0...main]: https://github.com/ergebnis/.github/compare/1.5.0...main +[1.5.0...1.5.1]: https://github.com/ergebnis/.github/compare/1.5.0...1.5.1 +[1.5.0...main]: https://github.com/ergebnis/.github/compare/1.5.1...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 @@ -132,5 +142,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#80]: https://github.com/ergebnis/.github/pull/80 [#82]: https://github.com/ergebnis/.github/pull/82 [#87]: https://github.com/ergebnis/.github/pull/87 +[#96]: https://github.com/ergebnis/.github/pull/96 [@localheinz]: https://github.com/localheinz diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index 74f120e..4fa502a 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -66,7 +66,7 @@ runs: const matches = process.env.PULL_REQUEST_BRANCH_NAME.match(new RegExp('^([^/]+)\/')); - if (!matches instanceof Array) { + if (!Array.isArray(matches)) { return; } From 8221ff1b9ce23805655d9998679442eb1acc1094 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Jul 2022 22:01:47 +0000 Subject: [PATCH 020/170] github-actions(deps): bump ergebnis/.github from 1.5.0 to 1.5.1 Bumps ergebnis/.github from 1.5.0 to 1.5.1. --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 2eabbf9..18d55b8 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,23 +24,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.5.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.5.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.5.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.5.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.5.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.5.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.5.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.5.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3c9e23a..87f7977 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.5.0" + uses: "ergebnis/.github/actions/github/release/create@1.5.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 32959ca..59fa6c4 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.5.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.5.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 41c221d39f2e12cb088752f7d78b043f67af45c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 22:32:26 +0000 Subject: [PATCH 021/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.1.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 2da4ac3..65f6155 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" with: github-token: "${{ inputs.github-token }}" script: | From 5d5a3ee103ae9427143101ab0db476be7c9257e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 22:32:27 +0000 Subject: [PATCH 022/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.1.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index 4fa502a..c220cd7 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" with: github-token: "${{ inputs.github-token }}" script: | From c33b39a8516a5737dff2c2ad3938e7dc17fe5198 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 22:32:30 +0000 Subject: [PATCH 023/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.1.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index cf43da5..b232f9a 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 09ac35253a0a04e2fdd4abd2046f6c8084342dc2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Aug 2022 22:32:36 +0000 Subject: [PATCH 024/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.1.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.1.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index 59fb11f..1b2e320 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.1.1" env: REVIEWER: "${{ inputs.reviewer }}" with: From 537bf85d3dd91f3f99d985b0844a4de8f8e85322 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Aug 2022 22:40:35 +0000 Subject: [PATCH 025/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.2.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.2.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index f825ac2..fe02973 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.2.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.2.0" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 31b944a74db0006814a39cfdc3417cc4b14dd518 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Aug 2022 22:40:35 +0000 Subject: [PATCH 026/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.1 to 6.2.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.1...v6.2.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index c220cd7..5d9b928 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.2.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.2.0" with: github-token: "${{ inputs.github-token }}" script: | From 65832c5102bf078f0f28411676185bb8833037d9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Aug 2022 22:40:36 +0000 Subject: [PATCH 027/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.1 to 6.2.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.1...v6.2.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index b232f9a..2cfec0e 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.2.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.2.0" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 654bbc124144c2f03d7572c55cc05b2b54017905 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Aug 2022 22:40:37 +0000 Subject: [PATCH 028/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.1 to 6.2.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.1...v6.2.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 65f6155..4619aec 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.2.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.2.0" with: github-token: "${{ inputs.github-token }}" script: | From 17dc3d6e67f9601396a10ed7393f2eb07c80b412 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:38:17 +0000 Subject: [PATCH 029/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.2.0 to 6.3.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.2.0...v6.3.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index fe02973..e1019c5 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.0" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 9bec0eec9b5fff22b5ee9a262c17ce25bca21746 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:38:17 +0000 Subject: [PATCH 030/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.2.0 to 6.3.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.2.0...v6.3.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 4619aec..0ca53fd 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.0" with: github-token: "${{ inputs.github-token }}" script: | From 91ee9b1862de9bbfa17e99c35552c6f71901b5ce Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:38:18 +0000 Subject: [PATCH 031/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.0 to 6.3.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.0...v6.3.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index b280315..396e5aa 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.1.0" + uses: "actions/github-script@v6.3.0" with: github-token: "${{ inputs.github-token }}" script: | From 4c9719eb0e9c460e4410f099db11387e8bba0c66 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Sep 2022 22:38:18 +0000 Subject: [PATCH 032/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.2.0 to 6.3.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.2.0...v6.3.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 2cfec0e..2d2a84c 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.0" env: ASSIGNEE: "${{ inputs.assignee }}" with: From b3b2d50d6d03d4afc1c839b69c9048c4464cbf00 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:28:14 +0000 Subject: [PATCH 033/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.2.0 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.2.0...v6.3.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index 5d9b928..b3c6c54 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.2.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | From e4eb6c19f6afcdc2f2cbb172f39fcfaf8a1dea0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:28:14 +0000 Subject: [PATCH 034/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.0 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.0...v6.3.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index e1019c5..0a96a09 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From f2b1d23e52cf09c7570d19b7f38b440d3aa92052 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:28:14 +0000 Subject: [PATCH 035/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.0 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.0...v6.3.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 0ca53fd..82f295f 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | From 03f47b6d946472cf04d97025c760493f440fe75a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:28:14 +0000 Subject: [PATCH 036/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.0 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.0...v6.3.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 396e5aa..76a0ca8 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | From f6b29f0bffb17da46112128616fcf85355d7749b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Sep 2022 22:28:15 +0000 Subject: [PATCH 037/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.1.1 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.1.1...v6.3.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index 1b2e320..cf613c3 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.1.1" + uses: "actions/github-script@v6.3.1" env: REVIEWER: "${{ inputs.reviewer }}" with: From d63ab767389f5e4c19d41a1e2b2300ecda540c55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Oct 2022 07:50:24 +0000 Subject: [PATCH 038/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.0 to 6.3.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.0...v6.3.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 2d2a84c..8d0d8d6 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.3.0" + uses: "actions/github-script@v6.3.1" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 1c635e67167fb1c7c96cb7a9d282a6ec3bd3c26b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 13:31:47 +0200 Subject: [PATCH 039/170] Fix: Document composite actions --- README.md | 501 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 501 insertions(+) diff --git a/README.md b/README.md index 2077d49..b5b2980 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,507 @@ Provides community health files for the [@ergebnis](https://github.com/ergebnis) :bulb: Also see [GitHub Docs: Creating a default community health file](https://docs.github.com/en/github/building-a-strong-community/creating-a-default-community-health-file). +## Composite Actions + +This repository provides the following composite actions: + +- [`ergebnis/.github/actions/composer/determine-cache-directory`](#composer-determine-cache-directory) +- [`ergebnis/.github/actions/composer/determine-root-version`](#composer-determine-root-version) +- [`ergebnis/.github/actions/composer/install`](#composer-install) +- [`ergebnis/.github/actions/github/pull-request/add-assignee`](#github-pull-request-add-assignee) +- [`ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name`](#github-pull-request-add-label-based-on-branch-name) +- [`ergebnis/.github/actions/github/pull-request/approve`](#github-pull-request-approve) +- [`ergebnis/.github/actions/github/pull-request/merge`](#github-pull-request-merge) +- [`ergebnis/.github/actions/github/pull-request/request-review`](#github-pull-request-review) +- [`ergebnis/.github/actions/github/release/create`](#github-release-create) + +### `ergebnis/.github/actions/composer/determine-cache-directory` + +This action determines the cache directory for [`composer`](https://github.com/composer/composer) and exports it as [`COMPOSER_CACHE_DIR`](https://getcomposer.org/doc/03-cli.md#composer-cache-dir) environment variable. + +This is useful for caching dependencies installed with `composer` using [`actions/cache`](https://github.com/actions/cache). + +```yaml +name: "Integrate" + +on: + pull_request: null + push: + branches: + - "main" + +jobs: + tests: + name: "Tests" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + + - name: "Set up PHP" + uses: "shivammathur/setup-php@2.21.2" + with: + coverage: "none" + php-version: "8.1" + + - name: "Determine composer cache directory" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.5.1" + + - name: "Cache dependencies installed with composer" + uses: "actions/cache@v3.0.8" + with: + path: "${{ env.COMPOSER_CACHE_DIR }}" + key: "composer-${{ hashFiles('composer.lock') }}" + restore-keys: "composer-" +``` + +For details, see [`actions/composer/determine-cache-directory/action.yaml`](actions/composer/determine-cache-directory/action.yaml). + +#### Inputs + +- `working-directory`, optional: The working directory to use. Defaults to `"'"."`. + +#### Outputs + +none + +#### Side Effects + +- The `COMPOSER_CACHE_DIR` environment variable contains the path to the composer cache directory. + +### `ergebnis/.github/actions/composer/determine-root-version` + +This action determines the composer root version and exports it as [`COMPOSER_ROOT_VERSION`](https://getcomposer.org/doc/03-cli.md#composer-root-version) environment variable. + +This is useful for a package that depends on itself, for example, [`phpunit/phpunit`](https://github.com/sebastianbergmann/phpunit/blob/802b91a979fb79f39ac8f87def3996913a7fef11/.github/workflows/ci.yml#L9-L10) + +```yaml +name: "Integrate" + +on: + pull_request: null + push: + branches: + - "main" + +jobs: + tests: + name: "Tests" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + + - name: "Set up PHP" + uses: "shivammathur/setup-php@2.21.2" + with: + coverage: "none" + php-version: "8.1" + + - name: "Determine composer root version" + uses: "ergebnis/.github/actions/composer/determine-root-version@1.5.1" +``` + +For details, see [`actions/composer/determine-root-version/action.yaml`](actions/composer/determine-root-version/action.yaml). + +#### Inputs + +- `branch`, optional: The name of the branch, defaults to `"main"`. +- `working-directory`, optional: The working directory to use, defaults to `"."`. + +#### Outputs + +none + +#### Side Effects + +The `COMPOSER_ROOT_VERSION` environment variable contains the root version if it has been defined as `branch-alias` in `composer.json`. + +```json +{ + "extra": { + "branch-alias": { + "dev-main": "10.0-dev" + } + } +} +``` + +### `ergebnis/.github/actions/composer/install` + +This action installs or updates dependencies with [`composer`](https://getcomposer.org/doc/03-cli.md#install-i). + +```yaml +name: "Integrate" + +on: + pull_request: null + push: + branches: + - "main" + +jobs: + tests: + name: "Tests" + + runs-on: "ubuntu-latest" + + strategy: + matrix: + dependencies: + - "lowest" + - "locked" + - "highest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + + - name: "Set up PHP" + uses: "shivammathur/setup-php@2.21.2" + with: + coverage: "none" + php-version: "8.1" + + - name: "Determine composer cache directory" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.5.1" + + - name: "Cache dependencies installed with composer" + uses: "actions/cache@v3.0.8" + with: + path: "${{ env.COMPOSER_CACHE_DIR }}" + key: "composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" + restore-keys: "composer-${{ matrix.dependencies }}-" + + - name: "Install ${{ matrix.dependencies }} dependencies with composer" + uses: "ergebnis/.github/actions/composer/install@1.5.1" + with: + dependencies: "${{ matrix.dependencies }}" +``` + +For details, see [`actions/composer/install/action.yaml`](actions/composer/install/action.yaml). + +#### Inputs + +- `dependencies`, optional: Which dependencies to install, one of `"lowest"`, `"locked"`, `"highest"` +- `working-directory`, optional: The working directory to use, defaults to `"."`. + +#### Outputs + +none + +#### Side Effects + +When `dependencies` is set to `"lowest"`, dependencies are installed in the directory specified by `working-directory` with + +```shell +composer update --ansi --no-interaction --no-progress --prefer-lowest +```` +When `dependencies` is set to `"locked"`, dependencies are installed in the directory specified by `working-directory` with + +```shell +composer install --ansi --no-interaction --no-progress +``` + +When `dependencies` is set to `"highest"`, dependencies are installed in the directory specified by `working-directory` with + +```shell +composer update --ansi --no-interaction --no-progress +```` + +### `ergebnis/.github/actions/github/pull-request/add-assignee` + +This action adds an assignee to a pull request. + +This is useful when you want to automatically merge a pull request, but prefer to assign a bot user beforehand. + +```yaml +name: "Merge" + +on: + workflow_run: + types: + - "completed" + workflows: + - "Integrate" + +jobs: + merge: + name: "Merge" + + runs-on: "ubuntu-latest" + + if: > + github.event.workflow_run.event == 'pull_request' && + github.event.workflow_run.conclusion == 'success' && + github.actor == 'dependabot[bot]' && ( + startsWith(github.event.workflow_run.head_commit.message, 'composer(deps-dev)') || + startsWith(github.event.workflow_run.head_commit.message, 'github-actions(deps)') + ) + + steps: + - name: "Assign @ergebnis-bot" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.5.1" + with: + assignee: "ergebnis-bot" + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" +``` + +For details, see [`actions/github/pull-request/add-assignee/action.yaml`](actions/github/pull-request/add-assignee/action.yaml). + +#### Inputs + +- `assignee`, required: The username of a user to add as an assignee to a pull request. +- `github-token`, required: The GitHub token of a user with permission to add assignees to a pull request + +#### Outputs + +none + +#### Side Effects + +The GitHub user with the username specified in the `assignee` input is assigned to the pull request. + +### `ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name` + +This action adds a label to a pull request based on the name of the branch. + +```yaml +# https://docs.github.com/en/actions + +name: "Triage" + +on: # yamllint disable-line rule:truthy + pull_request_target: + types: + - "opened" + +jobs: + label: + name: "Label" + + runs-on: "ubuntu-latest" + + steps: + - name: "Add labels based on branch name" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.5.1" + with: + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" +``` + +For details, see [`actions/github/pull-request/add-label-based-on-branch-name/action.yaml`](actions/github/pull-request/add-label-based-on-branch-name/action.yaml). + +#### Inputs + +- `github-token`, required: The GitHub token of a user with permission to add labels to to a pull request. + +#### Outputs + +none + +#### Side Effects + +- When the branch name starts with `feature/`, the label `enhancement` is added to the pull request by the user who owns the GitHub token specified with the `github-token` input. +- When the branch name starts with `fix/`, the label `bug` is added to the pull request by the user who owns the GitHub token specified with the `github-token` input. + +### `ergebnis/.github/actions/github/pull-request/approve` + +This action approves a pull request. + +This is useful when you want to automatically merge a pull request, but prefer to let a bot user approve the pull request beforehand. + +```yaml +name: "Merge" + +on: + workflow_run: + types: + - "completed" + workflows: + - "Integrate" + +jobs: + merge: + name: "Merge" + + runs-on: "ubuntu-latest" + + if: > + github.event.workflow_run.event == 'pull_request' && + github.event.workflow_run.conclusion == 'success' && + github.actor == 'dependabot[bot]' && ( + startsWith(github.event.workflow_run.head_commit.message, 'composer(deps-dev)') || + startsWith(github.event.workflow_run.head_commit.message, 'github-actions(deps)') + ) + + steps: + - name: "Approve pull request" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.5.1" + with: + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" +``` + +For details, see [`actions/github/pull-request/merge/action.yaml`](actions/github/pull-request/merge/action.yaml). + +#### Inputs + +- `github-token`, required: The GitHub token of a user with permission to approve a pull request + +#### Outputs + +none + +#### Side Effects + +The pull request is approved by the user who owns the GitHub token specified with the `github-token` input. + +### `ergebnis/.github/actions/github/pull-request/merge` + +This action merges a pull request. + +This is useful when you want to automatically merge a pull request, for example, opened by [`dependabot`](https://github.com/dependabot). + +```yaml +name: "Merge" + +on: + workflow_run: + types: + - "completed" + workflows: + - "Integrate" + +jobs: + merge: + name: "Merge" + + runs-on: "ubuntu-latest" + + if: > + github.event.workflow_run.event == 'pull_request' && + github.event.workflow_run.conclusion == 'success' && + github.actor == 'dependabot[bot]' && ( + startsWith(github.event.workflow_run.head_commit.message, 'composer(deps-dev)') || + startsWith(github.event.workflow_run.head_commit.message, 'github-actions(deps)') + ) + + steps: + - name: "Merge pull request" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.5.1" + with: + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" +``` + +For details, see [`actions/github/pull-request/merge/action.yaml`](actions/github/pull-request/merge/action.yaml). + +#### Inputs + +- `github-token`, required: The GitHub token of a user with permission to merge a pull request +- `merge-method`, option: The merge method to use, one `"merge"`, `"rebase"`, `"squash"`, defaults to `"merge"` + +#### Outputs + +none + +#### Side Effects + +The pull request is merged by the user who owns the GitHub token specified with the `github-token` input. + +### `ergebnis/.github/actions/github/pull-request/request-review` + +This action requests a review for a pull request. + +This is useful when you want to automatically merge a pull request, but prefer to let a bot user self-request a review for the pull request beforehand. + +```yaml +name: "Merge" + +on: + workflow_run: + types: + - "completed" + workflows: + - "Integrate" + +jobs: + merge: + name: "Merge" + + runs-on: "ubuntu-latest" + + if: > + github.event.workflow_run.event == 'pull_request' && + github.event.workflow_run.conclusion == 'success' && + github.actor == 'dependabot[bot]' && ( + startsWith(github.event.workflow_run.head_commit.message, 'composer(deps-dev)') || + startsWith(github.event.workflow_run.head_commit.message, 'github-actions(deps)') + ) + + steps: + - name: "Request review from @ergebnis-bot" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.5.1" + with: + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" + reviewer: "ergebnis-bot" +``` + +For details, see [`actions/github/pull-request/request-review/action.yaml`](actions/github/pull-request/request-review/action.yaml). + +#### Inputs + +- `github-token`, required: The GitHub token of a user with permission to request reviewers for a pull request. +- `reviewer`, required: The username of user to request review from for a pull request. + +#### Outputs + +none + +#### Side Effects + +A pull request review is requested for the user identified by the value of the `reviewer` input by the user who owns the GitHub token specified with the `github-token` input. + +### `ergebnis/.github/actions/github/release/create` + +```yaml + +name: "Release" + +on: + push: + tags: + - "**" + +jobs: + release: + name: "Release" + + runs-on: "ubuntu-latest" + + steps: + - name: "Create release" + uses: "ergebnis/.github/actions/github/release/create@1.5.1" + with: + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" +``` + +For details, see [`actions/github/release/create/action.yaml`](actions/github/release/create/action.yaml). + +#### Inputs + +- `github-token`, required: The GitHub token of a user with permission to create a release. + +#### Outputs + +none + +#### Side Effects + +A release is created by the user who owns the GitHub token specified with the `github-token` input. + ## Changelog Please have a look at [`CHANGELOG.md`](CHANGELOG.md). From d08f35dff2454c5bd561a68b1a945c76c441f68e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 18:19:08 +0200 Subject: [PATCH 040/170] Fix: Add missing description --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index b5b2980..bcc2b34 100644 --- a/README.md +++ b/README.md @@ -474,6 +474,10 @@ A pull request review is requested for the user identified by the value of the ` ### `ergebnis/.github/actions/github/release/create` +This action creates a release. + +This is usefull when you automatically want to create releases with [automatically generated release notes](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes). + ```yaml name: "Release" From 6c33720ba4ba3b8f4d0604a99c338978bcc3ed4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 18:31:04 +0200 Subject: [PATCH 041/170] Fix: CHANGELOG.md --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f64502..a79bb12 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.5.0...main`][1.5.0...main]. +For a full diff see [`1.5.1...main`][1.5.1...main]. ## [`1.5.1`][1.5.1] For a full diff see [`1.5.0...1.5.1`][1.5.0...1.5.1]. -### Added +### Fixed - Fixed a condition in `github/pull-request/add-label-based-on-branch-name` ([#96]), by [@localheinz] @@ -125,7 +125,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.4.0...1.4.1]: https://github.com/ergebnis/.github/compare/1.4.0...1.4.1 [1.4.1...1.5.0]: https://github.com/ergebnis/.github/compare/1.4.1...1.5.0 [1.5.0...1.5.1]: https://github.com/ergebnis/.github/compare/1.5.0...1.5.1 -[1.5.0...main]: https://github.com/ergebnis/.github/compare/1.5.1...main +[1.5.1...main]: https://github.com/ergebnis/.github/compare/1.5.1...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 From 4a2f3a54f6b6b41d7d00f6189631d0a5d229e914 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 18:30:09 +0200 Subject: [PATCH 042/170] Enhancement: Add composite actions for starting and stopping maintenance periods on Oh Dear --- CHANGELOG.md | 5 + README.md | 94 +++++++++++++++++++ .../maintenance-period/start/action.yaml | 28 ++++++ .../maintenance-period/stop/action.yaml | 28 ++++++ 4 files changed, 155 insertions(+) create mode 100644 actions/oh-dear/maintenance-period/start/action.yaml create mode 100644 actions/oh-dear/maintenance-period/stop/action.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index a79bb12..a8182a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.5.1...main`][1.5.1...main]. +### Added + +- Added composite actions `oh-dear/maintenance-period/start` and `oh-dear/maintenance-period/stop` for starting and stopping maintenance periods on [ohdear.app](https://ohdear.app) ([#123]), by [@localheinz] + ## [`1.5.1`][1.5.1] For a full diff see [`1.5.0...1.5.1`][1.5.0...1.5.1]. @@ -143,5 +147,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#82]: https://github.com/ergebnis/.github/pull/82 [#87]: https://github.com/ergebnis/.github/pull/87 [#96]: https://github.com/ergebnis/.github/pull/96 +[#123]: https://github.com/ergebnis/.github/pull/123 [@localheinz]: https://github.com/localheinz diff --git a/README.md b/README.md index bcc2b34..6f472b1 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,8 @@ This repository provides the following composite actions: - [`ergebnis/.github/actions/github/pull-request/merge`](#github-pull-request-merge) - [`ergebnis/.github/actions/github/pull-request/request-review`](#github-pull-request-review) - [`ergebnis/.github/actions/github/release/create`](#github-release-create) +- [`ergebnis/.github/actions/oh-dear/maintenance-period/start`](#oh-dear-maintenance-period-start) +- [`ergebnis/.github/actions/oh-dear/maintenance-period/stop`](#oh-dear-maintenance-period-stop) ### `ergebnis/.github/actions/composer/determine-cache-directory` @@ -514,6 +516,98 @@ none A release is created by the user who owns the GitHub token specified with the `github-token` input. +### `ergebnis/.github/actions/oh-dear/maintenance-period/start` + +This action starts a [maintenance period](https://ohdear.app/docs/general/maintenance-windows) on [Oh Dear!](https://ohdear.app). + +```yaml +name: "Deploy" + +on: + push: + branches: + - "main" + +jobs: + deploy: + name: "Deploy" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + with: + fetch-depth: 50 + + - name: "Start maintenance period on ohdear.app" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.5.1" + with: + oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" + oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" +``` + +For details, see [`actions/oh-dear/maintenance-period/start/action.yaml`](actions/oh-dear/maintenance-period/start/action.yaml). + +#### Inputs + +- `oh-dear-api-token`, required: The Oh Dear API token of a user with permission to start a maintenance period +- `oh-dear-site-id`, required: Site identifer of an Oh Dear site for which to start a maintenance period + +#### Outputs + +none + +#### Side Effects + +A maintenance period is started by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. + +### `ergebnis/.github/actions/oh-dear/maintenance-period/stop` + +This action stops a [maintenance period](https://ohdear.app/docs/general/maintenance-windows) on [Oh Dear!](https://ohdear.app). + +```yaml +name: "Deploy" + +on: + push: + branches: + - "main" + +jobs: + deploy: + name: "Deploy" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + with: + fetch-depth: 50 + + - name: "Stop maintenance period on ohdear.app" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.5.1" + with: + oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" + oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" +``` + +For details, see [`actions/oh-dear/maintenance-period/stop/action.yaml`](actions/oh-dear/maintenance-period/stop/action.yaml). + +#### Inputs + +- `oh-dear-api-token`, required: The Oh Dear API token of a user with permission to stop a maintenance period +- `oh-dear-site-id`, required: Site identifer of an Oh Dear site for which to stop a maintenance period + +#### Outputs + +none + +#### Side Effects + +A maintenance period is stopped by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. + ## Changelog Please have a look at [`CHANGELOG.md`](CHANGELOG.md). diff --git a/actions/oh-dear/maintenance-period/start/action.yaml b/actions/oh-dear/maintenance-period/start/action.yaml new file mode 100644 index 0000000..644c42b --- /dev/null +++ b/actions/oh-dear/maintenance-period/start/action.yaml @@ -0,0 +1,28 @@ +# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions +# https://ohdear.app/docs/integrations/api/maintenance-windows#creating-a-new-maintenance-period-on-demand + +name: "Starts maintenance period" + +description: "Starts maintenance period" + +inputs: + oh-dear-api-token: + description: "Oh Dear API token of a user with permission to start maintenance period" + required: true + oh-dear-site-id: + description: "Site identifer of an Oh Dear site for which to start a maintenance period" + required: true + +runs: + using: "composite" + + steps: + - name: "Start maintenance period on ohdear.app" + run: | + curl -X POST https://ohdear.app/api/sites/${{ inputs.oh-dear-site-id }}/start-maintenance \ + -H "Authorization: Bearer ${{ inputs.oh-dear-api-token }}" \ + -H "Accept: application/json" \ + -H "Content-Type: application/json" + shell: "bash" diff --git a/actions/oh-dear/maintenance-period/stop/action.yaml b/actions/oh-dear/maintenance-period/stop/action.yaml new file mode 100644 index 0000000..f91173d --- /dev/null +++ b/actions/oh-dear/maintenance-period/stop/action.yaml @@ -0,0 +1,28 @@ +# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions +# https://ohdear.app/docs/integrations/api/maintenance-windows#creating-a-new-maintenance-period-on-demand + +name: "Starts maintenance period" + +description: "Starts maintenance period" + +inputs: + oh-dear-api-token: + description: "Oh Dear API token of a user with permission to start maintenance period" + required: true + oh-dear-site-id: + description: "Site identifer of an Oh Dear site for which to start a maintenance period" + required: true + +runs: + using: "composite" + + steps: + - name: "Stop maintenance period on ohdear.app" + run: | + curl -X POST https://ohdear.app/api/sites/${{ inputs.oh-dear-site-id }}/stop-maintenance \ + -H "Authorization: Bearer ${{ inputs.oh-dear-api-token }}" \ + -H "Accept: application/json" \ + -H "Content-Type: application/json" + shell: "bash" From 0ebf0b7b56b286e1bec84603bf33e96376e7b936 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 18:36:27 +0200 Subject: [PATCH 043/170] Enhancement: Prepare release --- CHANGELOG.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8182a5..e7ff47b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.5.1...main`][1.5.1...main]. +For a full diff see [`1.6.0...main`][1.6.0...main]. + +## [`1.6.0`][1.6.0] + +For a full diff see [`1.5.1...1.6.0`][1.5.1...1.6.0]. ### Added @@ -117,6 +121,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.4.1]: https://github.com/ergebnis/.github/releases/tag/1.4.1 [1.5.0]: https://github.com/ergebnis/.github/releases/tag/1.5.0 [1.5.1]: https://github.com/ergebnis/.github/releases/tag/1.5.1 +[1.6.0]: https://github.com/ergebnis/.github/releases/tag/1.6.0 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -129,7 +134,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.4.0...1.4.1]: https://github.com/ergebnis/.github/compare/1.4.0...1.4.1 [1.4.1...1.5.0]: https://github.com/ergebnis/.github/compare/1.4.1...1.5.0 [1.5.0...1.5.1]: https://github.com/ergebnis/.github/compare/1.5.0...1.5.1 -[1.5.1...main]: https://github.com/ergebnis/.github/compare/1.5.1...main +[1.5.1...1.6.0]: https://github.com/ergebnis/.github/compare/1.5.1...1.6.0 +[1.6.0...main]: https://github.com/ergebnis/.github/compare/1.6.0...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 From 7d0ef0d7488d681138085be9dca7f2abf157bf34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 18:43:28 +0200 Subject: [PATCH 044/170] Fix: Version --- README.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index 6f472b1..68bd4b1 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ jobs: php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.5.1" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.6.0" - name: "Cache dependencies installed with composer" uses: "actions/cache@v3.0.8" @@ -113,7 +113,7 @@ jobs: php-version: "8.1" - name: "Determine composer root version" - uses: "ergebnis/.github/actions/composer/determine-root-version@1.5.1" + uses: "ergebnis/.github/actions/composer/determine-root-version@1.6.0" ``` For details, see [`actions/composer/determine-root-version/action.yaml`](actions/composer/determine-root-version/action.yaml). @@ -178,7 +178,7 @@ jobs: php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.5.1" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.6.0" - name: "Cache dependencies installed with composer" uses: "actions/cache@v3.0.8" @@ -188,7 +188,7 @@ jobs: restore-keys: "composer-${{ matrix.dependencies }}-" - name: "Install ${{ matrix.dependencies }} dependencies with composer" - uses: "ergebnis/.github/actions/composer/install@1.5.1" + uses: "ergebnis/.github/actions/composer/install@1.6.0" with: dependencies: "${{ matrix.dependencies }}" ``` @@ -255,7 +255,7 @@ jobs: steps: - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.6.0" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" @@ -298,7 +298,7 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.6.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -350,7 +350,7 @@ jobs: steps: - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.6.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -401,7 +401,7 @@ jobs: steps: - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.6.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -453,7 +453,7 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.6.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" @@ -497,7 +497,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.5.1" + uses: "ergebnis/.github/actions/github/release/create@1.6.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -541,7 +541,7 @@ jobs: fetch-depth: 50 - name: "Start maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.5.1" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.6.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" @@ -587,7 +587,7 @@ jobs: fetch-depth: 50 - name: "Stop maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.5.1" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.6.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" From 5c6edf6cf5fe3b103e9e9f50705d04135350c115 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 23:06:11 +0200 Subject: [PATCH 045/170] Enhancement: Add composite action for requesting a check run on Oh Dear --- CHANGELOG.md | 5 ++ README.md | 47 +++++++++++++++++++ actions/oh-dear/check/request-run/action.yaml | 28 +++++++++++ 3 files changed, 80 insertions(+) create mode 100644 actions/oh-dear/check/request-run/action.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ff47b..ef6324d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.6.0...main`][1.6.0...main]. +### Added + +- Added composite actions `oh-dear/check/request-run` for requesting a check run on [ohdear.app](https://ohdear.app) ([#124]), by [@localheinz] + ## [`1.6.0`][1.6.0] For a full diff see [`1.5.1...1.6.0`][1.5.1...1.6.0]. @@ -154,5 +158,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#87]: https://github.com/ergebnis/.github/pull/87 [#96]: https://github.com/ergebnis/.github/pull/96 [#123]: https://github.com/ergebnis/.github/pull/123 +[#124]: https://github.com/ergebnis/.github/pull/124 [@localheinz]: https://github.com/localheinz diff --git a/README.md b/README.md index 68bd4b1..f47c5c4 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ This repository provides the following composite actions: - [`ergebnis/.github/actions/github/pull-request/merge`](#github-pull-request-merge) - [`ergebnis/.github/actions/github/pull-request/request-review`](#github-pull-request-review) - [`ergebnis/.github/actions/github/release/create`](#github-release-create) +- [`ergebnis/.github/actions/oh-dear/check/request-run`](#oh-dear-check-request-run) - [`ergebnis/.github/actions/oh-dear/maintenance-period/start`](#oh-dear-maintenance-period-start) - [`ergebnis/.github/actions/oh-dear/maintenance-period/stop`](#oh-dear-maintenance-period-stop) @@ -516,6 +517,52 @@ none A release is created by the user who owns the GitHub token specified with the `github-token` input. +### `ergebnis/.github/actions/oh-dear/check/request-run` + +This action requests a [check](https://ohdear.app/docs/general/checks) run on [Oh Dear!](https://ohdear.app). + +```yaml +name: "Deploy" + +on: + push: + branches: + - "main" + +jobs: + deploy: + name: "Deploy" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + with: + fetch-depth: 50 + + - name: "Request broken links check on ohdear.app" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.7.0" + with: + oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" + oh-dear-check-id: "${{ secrets.OH_DEAR_BROKEN_LINKS_CHECK_ID }}" +``` + +For details, see [`actions/oh-dear/check/request-run/action.yaml`](actions/oh-dear/check/request-run/action.yaml). + +#### Inputs + +- `oh-dear-api-token`, required: The Oh Dear API token of a user with permission to request a check run +- `oh-dear-check-id`, required: Check identifer of an Oh Dear check for which to request a run + +#### Outputs + +none + +#### Side Effects + +A check run is requested by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the check identified by the `oh-dear-check-id` input. + ### `ergebnis/.github/actions/oh-dear/maintenance-period/start` This action starts a [maintenance period](https://ohdear.app/docs/general/maintenance-windows) on [Oh Dear!](https://ohdear.app). diff --git a/actions/oh-dear/check/request-run/action.yaml b/actions/oh-dear/check/request-run/action.yaml new file mode 100644 index 0000000..7ad7509 --- /dev/null +++ b/actions/oh-dear/check/request-run/action.yaml @@ -0,0 +1,28 @@ +# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions +# https://ohdear.app/docs/integrations/api/checks#enable-amp-disable-a-check + +name: "Request a check run" + +description: "Request a check run" + +inputs: + oh-dear-api-token: + description: "Oh Dear API token of a user with permission to request a check run" + required: true + oh-dear-check-id: + description: "Check identifer of an Oh Dear check for which to request a run" + required: true + +runs: + using: "composite" + + steps: + - name: "Request a check run on ohdear.app" + run: | + curl -X POST "https://ohdear.app/api/checks/${{ inputs.oh-dear-check-id }}/request-run" \ + -H "Authorization: Bearer ${{ inputs.oh-dear-api-token }}" \ + -H "Accept: application/json" \ + -H "Content-Type: application/json" + shell: "bash" From 2655c6a479ca6d8d6a7c0514bc4317dafca16a9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 1 Oct 2022 23:08:47 +0200 Subject: [PATCH 046/170] Enhancement: Prepare release --- CHANGELOG.md | 9 +++++++-- README.md | 24 ++++++++++++------------ 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ef6324d..c9c3cb6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.6.0...main`][1.6.0...main]. +For a full diff see [`1.7.0...main`][1.7.0...main]. + +## [`1.7.0`][1.7.0] + +For a full diff see [`1.6.0...1.7.0`][1.6.0...1.7.0]. ### Added @@ -139,7 +143,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.4.1...1.5.0]: https://github.com/ergebnis/.github/compare/1.4.1...1.5.0 [1.5.0...1.5.1]: https://github.com/ergebnis/.github/compare/1.5.0...1.5.1 [1.5.1...1.6.0]: https://github.com/ergebnis/.github/compare/1.5.1...1.6.0 -[1.6.0...main]: https://github.com/ergebnis/.github/compare/1.6.0...main +[1.6.0...1.7.0]: https://github.com/ergebnis/.github/compare/1.6.0...1.7.0 +[1.7.0...main]: https://github.com/ergebnis/.github/compare/1.7.0...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 diff --git a/README.md b/README.md index f47c5c4..91a6961 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ jobs: php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.6.0" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.7.0" - name: "Cache dependencies installed with composer" uses: "actions/cache@v3.0.8" @@ -114,7 +114,7 @@ jobs: php-version: "8.1" - name: "Determine composer root version" - uses: "ergebnis/.github/actions/composer/determine-root-version@1.6.0" + uses: "ergebnis/.github/actions/composer/determine-root-version@1.7.0" ``` For details, see [`actions/composer/determine-root-version/action.yaml`](actions/composer/determine-root-version/action.yaml). @@ -179,7 +179,7 @@ jobs: php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.6.0" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.7.0" - name: "Cache dependencies installed with composer" uses: "actions/cache@v3.0.8" @@ -189,7 +189,7 @@ jobs: restore-keys: "composer-${{ matrix.dependencies }}-" - name: "Install ${{ matrix.dependencies }} dependencies with composer" - uses: "ergebnis/.github/actions/composer/install@1.6.0" + uses: "ergebnis/.github/actions/composer/install@1.7.0" with: dependencies: "${{ matrix.dependencies }}" ``` @@ -256,7 +256,7 @@ jobs: steps: - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.6.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.7.0" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" @@ -299,7 +299,7 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.6.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -351,7 +351,7 @@ jobs: steps: - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.6.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -402,7 +402,7 @@ jobs: steps: - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.6.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -454,7 +454,7 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.6.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" @@ -498,7 +498,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.6.0" + uses: "ergebnis/.github/actions/github/release/create@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -588,7 +588,7 @@ jobs: fetch-depth: 50 - name: "Start maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.6.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.7.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" @@ -634,7 +634,7 @@ jobs: fetch-depth: 50 - name: "Stop maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.6.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.7.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" From 0ee5cadb69110d7b31aa3703151f4c1a7ef91a05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Oct 2022 21:10:52 +0000 Subject: [PATCH 047/170] github-actions(deps): bump ergebnis/.github from 1.5.1 to 1.7.0 Bumps ergebnis/.github from 1.5.1 to 1.7.0. --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 18d55b8..ed31553 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,23 +24,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 87f7977..957f35e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.5.1" + uses: "ergebnis/.github/actions/github/release/create@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 59fa6c4..9448fa2 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.5.1" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.7.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From e227716baf227c99ea30a44ed2625df6674331a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 3 Oct 2022 12:42:47 +0200 Subject: [PATCH 048/170] Fix: Add dependabot configuration for recently added composite actions --- .github/dependabot.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 9dc98f8..7be0410 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -79,3 +79,36 @@ updates: package-ecosystem: "github-actions" schedule: interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/oh-dear/check/request-run" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/oh-dear/maintenance-period/start" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/oh-dear/maintenance-period/stop" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" From 4d75f144dcec0e84947f1fda9272aab90ec582b8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Oct 2022 22:02:54 +0000 Subject: [PATCH 049/170] github-actions(deps): bump actions/checkout from 3.0.2 to 3.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.0.2 to 3.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.0.2...v3.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 3642c95..94e1da2 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v3.1.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.0" From 5795b535467a8b79b10f4a06ae04805bf0db3b57 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 22:40:53 +0000 Subject: [PATCH 050/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 8d0d8d6..cae641d 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" env: ASSIGNEE: "${{ inputs.assignee }}" with: From bfaa84083de831a46a3dc7244aea8ee5366701dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 22:40:57 +0000 Subject: [PATCH 051/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index b3c6c54..e167197 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | From 3ff86d6f5d8c4fa544737494304bd608f95672bb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 22:40:58 +0000 Subject: [PATCH 052/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index 0a96a09..11dbf2a 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 2ee15b1de60b10efd3a68c46dcf48143955cec6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 22:41:17 +0000 Subject: [PATCH 053/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index cf613c3..eb010d5 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" env: REVIEWER: "${{ inputs.reviewer }}" with: From 07785fef7a95826d84c22d2a2e65cc6cee8989cc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Oct 2022 22:41:19 +0000 Subject: [PATCH 054/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 82f295f..13c0fcf 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.2" with: github-token: "${{ inputs.github-token }}" script: | From 1bcb0d9249d36712bbeba445782d71b20f1eb3d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:12:56 +0000 Subject: [PATCH 055/170] github-actions(deps): bump ibiqlik/action-yamllint from 3.1.0 to 3.1.1 Bumps [ibiqlik/action-yamllint](https://github.com/ibiqlik/action-yamllint) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/ibiqlik/action-yamllint/releases) - [Commits](https://github.com/ibiqlik/action-yamllint/compare/v3.1.0...v3.1.1) --- updated-dependencies: - dependency-name: ibiqlik/action-yamllint dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 94e1da2..dd5575b 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -19,7 +19,7 @@ jobs: uses: "actions/checkout@v3.1.0" - name: "Lint YAML files" - uses: "ibiqlik/action-yamllint@v3.1.0" + uses: "ibiqlik/action-yamllint@v3.1.1" with: config_file: ".yamllint.yaml" file_or_dir: "." From 32041260d485a5c5cae205c38f58ef2d2ac873db Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:28:11 +0000 Subject: [PATCH 056/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.2 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.2...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index e167197..e2b60c3 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | From 00880519966275aad5302ee0be363e2876e9de55 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:29:03 +0000 Subject: [PATCH 057/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.2 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.2...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index cae641d..18f41be 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 9804c9e4c6ed7953207437c4e15989f55951084f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:29:05 +0000 Subject: [PATCH 058/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.2 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.2...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index 11dbf2a..e724c1c 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 477a6937f35b7d43477a4c0f297d88a29a7abec0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:29:13 +0000 Subject: [PATCH 059/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.1 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.1...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 76a0ca8..961898c 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.3.1" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | From d9444e2be744e9579916505f017dfbb2d9600021 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:29:15 +0000 Subject: [PATCH 060/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.2 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.2...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index eb010d5..394ef02 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" env: REVIEWER: "${{ inputs.reviewer }}" with: From cd044449ae5246631dd4730e36da68fd76d78c2b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 22:29:23 +0000 Subject: [PATCH 061/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.2 to 6.3.3. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.2...v6.3.3) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 13c0fcf..2fae547 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.3.2" + uses: "actions/github-script@v6.3.3" with: github-token: "${{ inputs.github-token }}" script: | From c9ffc5179d410f903b5e25ffe0224a7fd3247193 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Dec 2022 22:00:38 +0000 Subject: [PATCH 062/170] github-actions(deps): Bump actions/checkout from 3.1.0 to 3.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.1.0 to 3.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.1.0...v3.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index dd5575b..4f96f57 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.1.0" + uses: "actions/checkout@v3.2.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 58ef70a7f9951c73442ac4362316d4f09d1228c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Jan 2023 22:00:31 +0000 Subject: [PATCH 063/170] github-actions(deps): Bump actions/checkout from 3.2.0 to 3.3.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.2.0...v3.3.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 4f96f57..af3df2f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.2.0" + uses: "actions/checkout@v3.3.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 5c96f8d6abd4a970635f385e3838b444115237a6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 24 Jan 2023 16:54:19 +0100 Subject: [PATCH 064/170] Enhancement: Add composite action for installing dependencies with phive --- .github/dependabot.yml | 11 ++++++ CHANGELOG.md | 5 +++ README.md | 58 +++++++++++++++++++++++++++++++ actions/phive/install/action.yaml | 39 +++++++++++++++++++++ 4 files changed, 113 insertions(+) create mode 100644 actions/phive/install/action.yaml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 7be0410..61f6b18 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -112,3 +112,14 @@ updates: package-ecosystem: "github-actions" schedule: interval: "daily" + + - commit-message: + include: "scope" + prefix: "github-actions" + directory: "/actions/phive/install" + labels: + - "dependency" + open-pull-requests-limit: 10 + package-ecosystem: "github-actions" + schedule: + interval: "daily" diff --git a/CHANGELOG.md b/CHANGELOG.md index c9c3cb6..9571016 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.7.0...main`][1.7.0...main]. +### Added + +- Added composite action `phive/install` for installing dependencies with [`phive`](https://phar.io) ([#142]), by [@localheinz] + ## [`1.7.0`][1.7.0] For a full diff see [`1.6.0...1.7.0`][1.6.0...1.7.0]. @@ -164,5 +168,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#96]: https://github.com/ergebnis/.github/pull/96 [#123]: https://github.com/ergebnis/.github/pull/123 [#124]: https://github.com/ergebnis/.github/pull/124 +[#142]: https://github.com/ergebnis/.github/pull/142 [@localheinz]: https://github.com/localheinz diff --git a/README.md b/README.md index 91a6961..2b61f49 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,7 @@ This repository provides the following composite actions: - [`ergebnis/.github/actions/oh-dear/check/request-run`](#oh-dear-check-request-run) - [`ergebnis/.github/actions/oh-dear/maintenance-period/start`](#oh-dear-maintenance-period-start) - [`ergebnis/.github/actions/oh-dear/maintenance-period/stop`](#oh-dear-maintenance-period-stop) +- [`ergebnis/.github/actions/phive/install`](#phive-install) ### `ergebnis/.github/actions/composer/determine-cache-directory` @@ -655,6 +656,63 @@ none A maintenance period is stopped by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. +### `ergebnis/.github/actions/phive/install` + +This action installs dependencies with [`phive`](https://phar.io). + +```yaml +name: "Integrate" + +on: + pull_request: null + push: + branches: + - "main" + +jobs: + tests: + name: "Tests" + + runs-on: "ubuntu-latest" + + steps: + - name: "Checkout" + uses: "actions/checkout@v3.0.2" + + - name: "Set up PHP" + uses: "shivammathur/setup-php@2.21.2" + with: + coverage: "none" + php-version: "8.1" + tools: "phive" + + - name: "Install dependencies with phive" + uses: "ergebnis/.github/actions/phive/install@1.8.0" + with: + trust-gpg-keys: "0x033E5F8D801A2F8D,0x2A8299CE842DD38C" +``` + +For details, see [`actions/phive/install/action.yaml`](actions/phive/install/action.yaml). + +#### Inputs + +- `phive-home`, optional: Which directory to use as `PHIVE_HOME` directory, defaults to `".build/phive"`. +- `trust-gpg-keys`, required: Which GPG keys to trust, a comma-separated list of trusted GPG keys + +#### Outputs + +none + +#### Side Effects + +Dependencies are installed, assuming + +- `phive` is available +- `phive` could find a `phars.xml` +- keys presented by packages are listed using the `trust-gpg-keys` option + +The directory configured by the `phive-home` directory is cached using [`actions/cache`](https://github.com/actions/cache). + ## Changelog Please have a look at [`CHANGELOG.md`](CHANGELOG.md). diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml new file mode 100644 index 0000000..758d2e2 --- /dev/null +++ b/actions/phive/install/action.yaml @@ -0,0 +1,39 @@ +# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions +# https://phar.io + +name: "Install dependencies with phive" + +description: "Installs dependencies with phive" + +inputs: + phive-home: + default: ".build/phive" + description: "Which directory to use as PHIVE_HOME directory" + required: false + trust-gpg-keys: + default: "" + description: "A comma-separated list of trusted GPG keys" + required: true + +runs: + using: "composite" + + steps: + - name: "Create phive home directory" + run: "mkdir -p ${{ inputs.phive-home }}" + shell: "bash" + + - name: "Cache dependencies installed with phive" + uses: "actions/cache@v3.2.3" + with: + path: "${{ inputs.phive-home }}" + key: "phive-hashFiles('**/phars.xml')" + restore-keys: "phive-" + + - name: "Install dependencies with phive" + env: + PHIVE_HOME: "${{ inputs.phive-home }}" + run: "phive install --trust-gpg-keys ${{ inputs.trust-gpg-keys }}" + shell: "bash" From 3f92fddff613c9e5f78ceb452b4c7ee93573be6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 24 Jan 2023 16:57:38 +0100 Subject: [PATCH 065/170] Enhancement: Prepare release --- CHANGELOG.md | 9 +++++++-- README.md | 26 +++++++++++++------------- 2 files changed, 20 insertions(+), 15 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9571016..342dae4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.7.0...main`][1.7.0...main]. +For a full diff see [`1.8.0...main`][1.8.0...main]. + +## [`1.8.0`][1.8.0] + +For a full diff see [`1.7.0...1.8.0`][1.7.0...1.8.0]. ### Added @@ -148,7 +152,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.5.0...1.5.1]: https://github.com/ergebnis/.github/compare/1.5.0...1.5.1 [1.5.1...1.6.0]: https://github.com/ergebnis/.github/compare/1.5.1...1.6.0 [1.6.0...1.7.0]: https://github.com/ergebnis/.github/compare/1.6.0...1.7.0 -[1.7.0...main]: https://github.com/ergebnis/.github/compare/1.7.0...main +[1.7.0...1.8.0]: https://github.com/ergebnis/.github/compare/1.7.0...1.8.0 +[1.8.0...main]: https://github.com/ergebnis/.github/compare/1.8.0...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 diff --git a/README.md b/README.md index 2b61f49..0782cff 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ jobs: php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.7.0" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.8.0" - name: "Cache dependencies installed with composer" uses: "actions/cache@v3.0.8" @@ -115,7 +115,7 @@ jobs: php-version: "8.1" - name: "Determine composer root version" - uses: "ergebnis/.github/actions/composer/determine-root-version@1.7.0" + uses: "ergebnis/.github/actions/composer/determine-root-version@1.8.0" ``` For details, see [`actions/composer/determine-root-version/action.yaml`](actions/composer/determine-root-version/action.yaml). @@ -180,7 +180,7 @@ jobs: php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.7.0" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.8.0" - name: "Cache dependencies installed with composer" uses: "actions/cache@v3.0.8" @@ -190,7 +190,7 @@ jobs: restore-keys: "composer-${{ matrix.dependencies }}-" - name: "Install ${{ matrix.dependencies }} dependencies with composer" - uses: "ergebnis/.github/actions/composer/install@1.7.0" + uses: "ergebnis/.github/actions/composer/install@1.8.0" with: dependencies: "${{ matrix.dependencies }}" ``` @@ -257,7 +257,7 @@ jobs: steps: - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.8.0" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" @@ -300,7 +300,7 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -352,7 +352,7 @@ jobs: steps: - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -403,7 +403,7 @@ jobs: steps: - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -455,7 +455,7 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" @@ -499,7 +499,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.7.0" + uses: "ergebnis/.github/actions/github/release/create@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -543,7 +543,7 @@ jobs: fetch-depth: 50 - name: "Request broken links check on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.7.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.8.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-check-id: "${{ secrets.OH_DEAR_BROKEN_LINKS_CHECK_ID }}" @@ -589,7 +589,7 @@ jobs: fetch-depth: 50 - name: "Start maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.7.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.8.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" @@ -635,7 +635,7 @@ jobs: fetch-depth: 50 - name: "Stop maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.7.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.8.0" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" From a922262d11448026c1ba6a489c2b247ab804e888 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 24 Jan 2023 22:00:33 +0000 Subject: [PATCH 066/170] github-actions(deps): Bump ergebnis/.github from 1.7.0 to 1.8.0 Bumps ergebnis/.github from 1.7.0 to 1.8.0. --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index ed31553..3c9222d 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -24,23 +24,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 957f35e..c760eed 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.7.0" + uses: "ergebnis/.github/actions/github/release/create@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 9448fa2..8f59cb6 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -15,6 +15,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.7.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.8.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 63bad26407f94faa4b3e3375475456ca5f9eba64 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 22:05:03 +0000 Subject: [PATCH 067/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index e2b60c3..cd0fc57 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | From 5b35f49c3f043a8860a9f7583c32209330ca10bc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 22:05:11 +0000 Subject: [PATCH 068/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 2fae547..7ec509c 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | From e787c7610f7b64a40742e089ef3b1743ee0f9c63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 22:05:13 +0000 Subject: [PATCH 069/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index 394ef02..7969f9c 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" env: REVIEWER: "${{ inputs.reviewer }}" with: From 7f4e2be335b42384c9457ecc02a9083d8124c156 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 22:05:22 +0000 Subject: [PATCH 070/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index e724c1c..572d5ae 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From d974f71ab12f654eeddc348127372aae8ce9be26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Jan 2023 22:05:31 +0000 Subject: [PATCH 071/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 18f41be..8a42ca6 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" env: ASSIGNEE: "${{ inputs.assignee }}" with: From de25480dcc713b8db7fa1e25d86b5aca574808f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 30 Jan 2023 12:48:48 +0100 Subject: [PATCH 072/170] Fix: Exclude pull requests created by @dependabot from release notes --- .github/release.yaml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 .github/release.yaml diff --git a/.github/release.yaml b/.github/release.yaml new file mode 100644 index 0000000..5226faf --- /dev/null +++ b/.github/release.yaml @@ -0,0 +1,6 @@ +# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes#configuring-automatically-generated-release-notes + +changelog: + exclude: + authors: + - "dependabot" From 292a3c5d01abf446443a79f40e2d25cda6d997a1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 11:49:46 +0000 Subject: [PATCH 073/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.3.3 to 6.4.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.3.3...v6.4.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 961898c..6756b03 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.3.3" + uses: "actions/github-script@v6.4.0" with: github-token: "${{ inputs.github-token }}" script: | From 1705953f5344e68d3d878b95ed76e4014b550e36 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Jan 2023 11:50:25 +0000 Subject: [PATCH 074/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.2.3 to 3.2.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.2.3...v3.2.4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 758d2e2..b49f7ea 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.2.3" + uses: "actions/cache@v3.2.4" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From a55b3777a60b8efd6bd8a18044859c933172ff87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 5 Feb 2023 13:34:55 +0100 Subject: [PATCH 075/170] Fix: Use .yaml instead of .yml as extension --- FUNDING.yml => FUNDING.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename FUNDING.yml => FUNDING.yaml (100%) diff --git a/FUNDING.yml b/FUNDING.yaml similarity index 100% rename from FUNDING.yml rename to FUNDING.yaml From 452f120dc85fd3ee5c6bbae6d86f8325ecca7804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 5 Feb 2023 13:35:14 +0100 Subject: [PATCH 076/170] Enhancement: Add link to documentation --- FUNDING.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/FUNDING.yaml b/FUNDING.yaml index 4c8ee87..8730580 100644 --- a/FUNDING.yaml +++ b/FUNDING.yaml @@ -1,3 +1,5 @@ +# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository + github: - "ergebnis" - "localheinz" From 1cdf2a9edfb03d56f592e95e466fba995518641f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Feb 2023 23:06:24 +0000 Subject: [PATCH 077/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.2.4 to 3.2.5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.2.4...v3.2.5) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index b49f7ea..26813f7 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.2.4" + uses: "actions/cache@v3.2.5" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From 39378dce2ffe8ef2216d5a2205f4d1fad60f1926 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Feb 2023 23:08:08 +0000 Subject: [PATCH 078/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.2.5 to 3.2.6. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.2.5...v3.2.6) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 26813f7..93b907d 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.2.5" + uses: "actions/cache@v3.2.6" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From dae7c42001bf497499f2d18d7bc5442791ede65f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Mar 2023 23:05:05 +0000 Subject: [PATCH 079/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 3.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.2.6...v3.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 93b907d..17050bb 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.2.6" + uses: "actions/cache@v3.3.0" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From bd7e28533363975115fe77b57eccd1540b25e291 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Mar 2023 23:07:23 +0000 Subject: [PATCH 080/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.3.0 to 3.3.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.0...v3.3.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 17050bb..d5f82e9 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.3.0" + uses: "actions/cache@v3.3.1" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From 8476796825d6af2c6e3227f220e20ca683d9aece Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Mar 2023 22:56:32 +0000 Subject: [PATCH 081/170] github-actions(deps): Bump actions/checkout from 3.3.0 to 3.4.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index af3df2f..7c460ea 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.3.0" + uses: "actions/checkout@v3.4.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 9c20763881c69b184f294518450a6bec0e546b16 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 24 Mar 2023 22:56:30 +0000 Subject: [PATCH 082/170] github-actions(deps): Bump actions/checkout from 3.4.0 to 3.5.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.4.0...v3.5.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 7c460ea..a88be94 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.4.0" + uses: "actions/checkout@v3.5.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 967ca2c9983cbcdc1341311543a9933317c449fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:59:48 +0000 Subject: [PATCH 083/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.0...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index cd0fc57..f251484 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | From 11fc2f47df131b82fd550ffc44e49b1043d158a3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:59:54 +0000 Subject: [PATCH 084/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.0...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 7ec509c..7c43594 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | From 4c10b96d521aed1aeac5b852617c86403d02702a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:59:54 +0000 Subject: [PATCH 085/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.0...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index 572d5ae..ef938cd 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From e1f5372d88d88c7b7872b31e5cd6637112daae43 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:59:55 +0000 Subject: [PATCH 086/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.0...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 6756b03..c8771c1 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | From 8f2d3fbb76c7fc82d1f9c416fdcc57e11fdc2e6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:59:56 +0000 Subject: [PATCH 087/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.0...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 8a42ca6..74a7950 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 55c18ce3df68c572afe30647df6ad0d2d6ed453b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 6 Apr 2023 22:59:57 +0000 Subject: [PATCH 088/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.0 to 6.4.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.0...v6.4.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index 7969f9c..33e79a6 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.4.0" + uses: "actions/github-script@v6.4.1" env: REVIEWER: "${{ inputs.reviewer }}" with: From 4bdf92aadfd97504d3f78fa4bb66e917088b0fa6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Apr 2023 22:56:28 +0000 Subject: [PATCH 089/170] github-actions(deps): Bump actions/checkout from 3.5.0 to 3.5.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.0 to 3.5.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.5.0...v3.5.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index a88be94..749b071 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.5.0" + uses: "actions/checkout@v3.5.1" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 35b61cb4d20c9ea18cafac1ea1c1c39b9b076e6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Apr 2023 22:56:29 +0000 Subject: [PATCH 090/170] github-actions(deps): Bump actions/checkout from 3.5.1 to 3.5.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.1 to 3.5.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.5.1...v3.5.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 749b071..5c9483f 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.5.1" + uses: "actions/checkout@v3.5.2" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 2de09661995b6e13d1d6f4ccb9d26d3687e44345 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 9 Jun 2023 22:56:42 +0000 Subject: [PATCH 091/170] github-actions(deps): Bump actions/checkout from 3.5.2 to 3.5.3 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.5.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.5.2...v3.5.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 5c9483f..e744b12 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.5.2" + uses: "actions/checkout@v3.5.3" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From bfeeed597d6841bd75495b0b91664b8e7235d68f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sun, 25 Jun 2023 11:30:41 +0200 Subject: [PATCH 092/170] Fix: Adjust wording --- profile/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile/README.md b/profile/README.md index 48fe6b3..75330aa 100644 --- a/profile/README.md +++ b/profile/README.md @@ -2,4 +2,4 @@ Do you like what you see? -Consider [sponsoring @localheinz](https://github.com/sponsors/localheinz), who maintains these fine packages! +[Sponsor @localheinz](https://github.com/sponsors/localheinz), who maintains these fine packages! From f43d5265a0b69b3ca27640a6a438cc1051e6cda5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Aug 2023 22:55:41 +0000 Subject: [PATCH 093/170] github-actions(deps): Bump actions/checkout from 3.5.3 to 3.6.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 3.6.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.5.3...v3.6.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index e744b12..d88af5a 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.5.3" + uses: "actions/checkout@v3.6.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From eb6462a53f512b76a8a3b53de5d4f4d9de722d56 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Sep 2023 22:31:43 +0000 Subject: [PATCH 094/170] github-actions(deps): Bump actions/checkout from 3.6.0 to 4.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.6.0 to 4.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.6.0...v4.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index d88af5a..2b9fba7 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.6.0" + uses: "actions/checkout@v4.0.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From e2471bf84ad417d90f9b07101b7eb8feac416be1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Sep 2023 22:35:58 +0000 Subject: [PATCH 095/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 to 3.3.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.1...v3.3.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index d5f82e9..6146dcf 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.3.1" + uses: "actions/cache@v3.3.2" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From 41cf30ff2fcf56c7730175e241c8f3e02b3db675 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 22 Sep 2023 22:42:21 +0000 Subject: [PATCH 096/170] github-actions(deps): Bump actions/checkout from 4.0.0 to 4.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.0.0 to 4.1.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.0.0...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 2b9fba7..9403a82 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.0.0" + uses: "actions/checkout@v4.1.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 3bb38e6e73c67ad25d09769a8eeb2c58f8da592c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 17 Oct 2023 22:13:55 +0000 Subject: [PATCH 097/170] github-actions(deps): Bump actions/checkout from 4.1.0 to 4.1.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 9403a82..76561fd 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -16,7 +16,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.0" + uses: "actions/checkout@v4.1.1" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From da3b33070e908b012a5c76e170bec96ba35b1da5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 22:16:32 +0000 Subject: [PATCH 098/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index ef938cd..5f531dd 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 79c8290239bfe0b7032aec3369a8884c94299dda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 22:17:18 +0000 Subject: [PATCH 099/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 7c43594..80fef3b 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | From 1b91ec3f4f1e5c02a85fd09ba70b070e70a36397 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 22:20:49 +0000 Subject: [PATCH 100/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 74a7950..48ecc98 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 62f73b7c0deab221144f1094ac1be6ea4d70b69f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 22:32:36 +0000 Subject: [PATCH 101/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index f251484..4d2e16d 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | From 657f0cd051c820a6d8d5dd536486ec91562c2adf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 22:39:40 +0000 Subject: [PATCH 102/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index c8771c1..c3a09c9 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | From 0361d8578163b39d08ec066988da8ec4dadce9a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Nov 2023 22:46:38 +0000 Subject: [PATCH 103/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 6.4.1 to 7.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v6.4.1...v7.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index 33e79a6..c26b03e 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v6.4.1" + uses: "actions/github-script@v7.0.0" env: REVIEWER: "${{ inputs.reviewer }}" with: From fc467fd03e7c32ec60330cde3adc0085890fa5e6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 22:34:08 +0000 Subject: [PATCH 104/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index c3a09c9..a305857 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -23,7 +23,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | From 11075e2a6f96693b8a17a1715fe78b8ad5cef0c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 22:42:53 +0000 Subject: [PATCH 105/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index 4d2e16d..706e904 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | From 62c940fb945ded5c0a15863be7a7c079798c1764 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 17 Nov 2023 22:52:48 +0000 Subject: [PATCH 106/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 80fef3b..1e81940 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | From aff71bfb6cd76964f74b2c59760466844eb161b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 22:37:27 +0000 Subject: [PATCH 107/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 48ecc98..4c7c206 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" env: ASSIGNEE: "${{ inputs.assignee }}" with: From 60fefe12c4697296d3dba1c2b90fc4c443d47179 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 22:53:21 +0000 Subject: [PATCH 108/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/merge/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index 5f531dd..c6890e9 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -23,7 +23,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -45,7 +45,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Merge pull request" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" env: MERGE_METHOD: "${{ inputs.merge-method }}" with: From 7fae902fba1e4ca6d44eaefe711ee679ea55755f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 20 Nov 2023 22:58:22 +0000 Subject: [PATCH 109/170] github-actions(deps): Bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.0 to 7.0.1. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.0...v7.0.1) --- updated-dependencies: - dependency-name: actions/github-script dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index c26b03e..a188dcc 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v7.0.0" + uses: "actions/github-script@v7.0.1" env: REVIEWER: "${{ inputs.reviewer }}" with: From c6377af1c79f28d3a5f570a2e20e755ea87ed21f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 27 Nov 2023 15:15:35 +0100 Subject: [PATCH 110/170] Fix: Value --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0782cff..bd8ab39 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ For details, see [`actions/composer/determine-cache-directory/action.yaml`](acti #### Inputs -- `working-directory`, optional: The working directory to use. Defaults to `"'"."`. +- `working-directory`, optional: The working directory to use. Defaults to `"."`. #### Outputs From 4e7c2a4759eb375d0dc097915b6326302d709b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:00:32 +0100 Subject: [PATCH 111/170] Fix: Reference --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 342dae4..be65537 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -138,6 +138,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.5.0]: https://github.com/ergebnis/.github/releases/tag/1.5.0 [1.5.1]: https://github.com/ergebnis/.github/releases/tag/1.5.1 [1.6.0]: https://github.com/ergebnis/.github/releases/tag/1.6.0 +[1.7.0]: https://github.com/ergebnis/.github/releases/tag/1.7.0 +[1.8.0]: https://github.com/ergebnis/.github/releases/tag/1.8.0 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 From d01eaa761609cd17710967536ddcff7aa37d7f55 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:10:36 +0100 Subject: [PATCH 112/170] Fix: Links --- actions/github/pull-request/add-assignee/action.yaml | 2 +- .../pull-request/add-label-based-on-branch-name/action.yaml | 2 +- actions/github/pull-request/approve/action.yaml | 2 +- actions/github/pull-request/merge/action.yaml | 2 +- actions/github/pull-request/request-review/action.yaml | 2 +- actions/github/release/create/action.yaml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 4c7c206..2836deb 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions -# https://docs.github.com/en/rest/reference/issues#add-assignees-to-an-issue +# https://docs.github.com/en/rest/issues/assignees#add-assignees-to-an-issue # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_run diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index 706e904..ea2346c 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions -# https://docs.github.com/en/rest/reference/issues#add-labels-to-an-issue +# https://docs.github.com/en/rest/issues/labels#add-labels-to-an-issue # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_run diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 1e81940..960d917 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions -# https://docs.github.com/en/rest/reference/pulls#create-a-review-for-a-pull-request +# https://docs.github.com/en/rest/pulls/reviews#create-a-review-for-a-pull-request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_run diff --git a/actions/github/pull-request/merge/action.yaml b/actions/github/pull-request/merge/action.yaml index c6890e9..c919bd8 100644 --- a/actions/github/pull-request/merge/action.yaml +++ b/actions/github/pull-request/merge/action.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions -# https://docs.github.com/en/rest/reference/pulls#merge-a-pull-request +# https://docs.github.com/en/rest/pulls/pulls#merge-a-pull-request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_run diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index a188dcc..c3c5dbb 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions -# https://docs.github.com/en/rest/reference/pulls#request-reviewers-for-a-pull-request +# https://docs.github.com/en/rest/pulls/review-requests#request-reviewers-for-a-pull-request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#pull_request # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#workflow_run diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index a305857..708f69d 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -1,7 +1,7 @@ # https://docs.github.com/en/actions/creating-actions/creating-a-composite-action # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs # https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions -# https://docs.github.com/en/rest/reference/releases#create-a-release +# https://docs.github.com/en/rest/releases/releases#create-a-release # https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push name: "Create a release" From 246cda08075d3538e4c608a65eb933ad2f217453 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:11:58 +0100 Subject: [PATCH 113/170] Enhancement: Expose RELEASE_HTML_URL environment variable --- CHANGELOG.md | 5 +++++ actions/github/release/create/action.yaml | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index be65537..9fccf87 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.8.0...main`][1.8.0...main]. +### Changed + +- Started exposing a `RELEASE_HTML_URL` environment variable after creating a release with `actions/github/release/create` ([#183]), by [@localheinz] + ## [`1.8.0`][1.8.0] For a full diff see [`1.7.0...1.8.0`][1.7.0...1.8.0]. @@ -176,5 +180,6 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#123]: https://github.com/ergebnis/.github/pull/123 [#124]: https://github.com/ergebnis/.github/pull/124 [#142]: https://github.com/ergebnis/.github/pull/142 +[#183]: https://github.com/ergebnis/.github/pull/183 [@localheinz]: https://github.com/localheinz diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 708f69d..5898cf0 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -44,6 +44,7 @@ runs: tag_name: process.env.RELEASE_TAG, }); + core.exportVariable('RELEASE_HTML_URL', response.data.html_url); core.exportVariable('RELEASE_ID', response.data.id); core.exportVariable('RELEASE_UPLOAD_URL', response.data.upload_url); } catch (error) { From fabb456710ac53a00543bafc6cb98920f71da610 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:22:38 +0100 Subject: [PATCH 114/170] Fix: Typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd8ab39..0157aa1 100644 --- a/README.md +++ b/README.md @@ -480,7 +480,7 @@ A pull request review is requested for the user identified by the value of the ` This action creates a release. -This is usefull when you automatically want to create releases with [automatically generated release notes](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes). +This is useful when you automatically want to create releases with [automatically generated release notes](https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes). ```yaml From 216a20068e8275464d6afbf8d2fca4835807ace0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:21:08 +0100 Subject: [PATCH 115/170] Fix: Document all side effects --- .editorconfig | 3 +++ README.md | 74 ++++++++++++++++++++++++++++----------------------- 2 files changed, 43 insertions(+), 34 deletions(-) diff --git a/.editorconfig b/.editorconfig index 7122a7a..9345cf7 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,6 +7,9 @@ indent_style = space insert_final_newline = true trim_trailing_whitespace = true +[*.md] +indent_size = 2 + [*.{yaml,yml}] indent_size = 2 diff --git a/README.md b/README.md index 0157aa1..d3bbc3d 100644 --- a/README.md +++ b/README.md @@ -131,17 +131,17 @@ none #### Side Effects -The `COMPOSER_ROOT_VERSION` environment variable contains the root version if it has been defined as `branch-alias` in `composer.json`. - -```json -{ - "extra": { - "branch-alias": { - "dev-main": "10.0-dev" +- The `COMPOSER_ROOT_VERSION` environment variable contains the root version if it has been defined as `branch-alias` in `composer.json`. + + ```json + { + "extra": { + "branch-alias": { + "dev-main": "10.0-dev" + } } } -} -``` + ``` ### `ergebnis/.github/actions/composer/install` @@ -208,22 +208,22 @@ none #### Side Effects -When `dependencies` is set to `"lowest"`, dependencies are installed in the directory specified by `working-directory` with +- When `dependencies` is set to `"lowest"`, dependencies are installed in the directory specified by `working-directory` with -```shell -composer update --ansi --no-interaction --no-progress --prefer-lowest -```` -When `dependencies` is set to `"locked"`, dependencies are installed in the directory specified by `working-directory` with + ```shell + composer update --ansi --no-interaction --no-progress --prefer-lowest + ```` +- When `dependencies` is set to `"locked"`, dependencies are installed in the directory specified by `working-directory` with -```shell -composer install --ansi --no-interaction --no-progress -``` + ```shell + composer install --ansi --no-interaction --no-progress + ``` -When `dependencies` is set to `"highest"`, dependencies are installed in the directory specified by `working-directory` with +- When `dependencies` is set to `"highest"`, dependencies are installed in the directory specified by `working-directory` with -```shell -composer update --ansi --no-interaction --no-progress -```` + ```shell + composer update --ansi --no-interaction --no-progress + ```` ### `ergebnis/.github/actions/github/pull-request/add-assignee` @@ -276,7 +276,8 @@ none #### Side Effects -The GitHub user with the username specified in the `assignee` input is assigned to the pull request. +- The GitHub user with the username specified in the `assignee` input is assigned to the pull request. +- The `PULL_REQUEST_NUMBER` environment variable contains the number of the pull request. ### `ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name` @@ -319,6 +320,8 @@ none - When the branch name starts with `feature/`, the label `enhancement` is added to the pull request by the user who owns the GitHub token specified with the `github-token` input. - When the branch name starts with `fix/`, the label `bug` is added to the pull request by the user who owns the GitHub token specified with the `github-token` input. +- The `PULL_REQUEST_BRANCH_NAME` environment variable contains the name of the head branch of the pull request. +- The `PULL_REQUEST_NUMBER` environment variable contains the number of the pull request. ### `ergebnis/.github/actions/github/pull-request/approve` @@ -369,7 +372,8 @@ none #### Side Effects -The pull request is approved by the user who owns the GitHub token specified with the `github-token` input. +- The pull request is approved by the user who owns the GitHub token specified with the `github-token` input. +- The `PULL_REQUEST_NUMBER` environment variable contains the number of the pull request. ### `ergebnis/.github/actions/github/pull-request/merge` @@ -421,7 +425,8 @@ none #### Side Effects -The pull request is merged by the user who owns the GitHub token specified with the `github-token` input. +- The pull request is merged by the user who owns the GitHub token specified with the `github-token` input. +- The `PULL_REQUEST_NUMBER` environment variable contains the number of the pull request. ### `ergebnis/.github/actions/github/pull-request/request-review` @@ -474,7 +479,8 @@ none #### Side Effects -A pull request review is requested for the user identified by the value of the `reviewer` input by the user who owns the GitHub token specified with the `github-token` input. +- A pull request review is requested for the user identified by the value of the `reviewer` input by the user who owns the GitHub token specified with the `github-token` input. +- The `PULL_REQUEST_NUMBER` environment variable contains the number of the pull request. ### `ergebnis/.github/actions/github/release/create` @@ -516,7 +522,11 @@ none #### Side Effects -A release is created by the user who owns the GitHub token specified with the `github-token` input. +- A release is created by the user who owns the GitHub token specified with the `github-token` input. +- The `RELEASE_HTML_URL` environment variable contains the HTML URL to the release. +- The `RELEASE_ID` environment variable contains the release identifier. +- The `RELEASE_TAG` environment variable contains the release tag. +- The `RELEASE_UPLOAD_URL` environment variable contains the URL for uploading release assets. ### `ergebnis/.github/actions/oh-dear/check/request-run` @@ -562,7 +572,7 @@ none #### Side Effects -A check run is requested by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the check identified by the `oh-dear-check-id` input. +- A check run is requested by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the check identified by the `oh-dear-check-id` input. ### `ergebnis/.github/actions/oh-dear/maintenance-period/start` @@ -608,7 +618,7 @@ none #### Side Effects -A maintenance period is started by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. +- A maintenance period is started by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. ### `ergebnis/.github/actions/oh-dear/maintenance-period/stop` @@ -654,7 +664,7 @@ none #### Side Effects -A maintenance period is stopped by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. +- A maintenance period is stopped by the user who owns the Oh Dear API token specified with the `oh-dear-api-token` input for the site identified by the `oh-dear-site-id` input. ### `ergebnis/.github/actions/phive/install` @@ -705,11 +715,7 @@ none #### Side Effects -Dependencies are installed, assuming - -- `phive` is available -- `phive` could find a `phars.xml` -- keys presented by packages are listed using the `trust-gpg-keys` option +- Given that `phive` is available, `phive` could find a `phars.xml`, and keys presented by packages are listed using the `trust-gpg-keys` option, dependencies are installed with `phive`. The directory configured by the `phive-home` directory is cached using [`actions/cache`](https://github.com/actions/cache). From 2dddec460d3c7f4e97fb1a15c3c29426d1195a7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:38:56 +0100 Subject: [PATCH 116/170] Enhancement: Synchronize with ergebnis/php-package-template --- .editorconfig | 1 + .github/CODEOWNERS | 3 ++ .github/CONTRIBUTING.md | 12 +++---- .github/SECURITY.md | 17 ++++++++++ .github/{dependabot.yml => dependabot.yaml} | 2 +- .github/settings.yml | 16 ++++----- .github/workflows/integrate.yaml | 2 ++ .github/workflows/merge.yaml | 4 ++- .github/workflows/release.yaml | 2 ++ .github/workflows/triage.yaml | 2 ++ .yamllint.yaml | 2 +- LICENSE.md | 16 +++++++++ README.md | 37 +++++++++++++-------- 13 files changed, 86 insertions(+), 30 deletions(-) create mode 100644 .github/CODEOWNERS create mode 100644 .github/SECURITY.md rename .github/{dependabot.yml => dependabot.yaml} (95%) create mode 100644 LICENSE.md diff --git a/.editorconfig b/.editorconfig index 9345cf7..2bf0901 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,6 +2,7 @@ root = true [*] charset = utf-8 +end_of_line = lf indent_size = 4 indent_style = space insert_final_newline = true diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..21dd534 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,3 @@ +# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners + +* @ergebnis-bot @localheinz diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 6a730e1..141a83a 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -1,6 +1,6 @@ # CONTRIBUTING -We are using [GitHub Actions](https://github.com/features/actions) as a continuous integration system. +We use [GitHub Actions](https://github.com/features/actions) as a continuous integration system. For details, take a look at the following workflow configuration files: @@ -10,12 +10,12 @@ For details, take a look at the following workflow configuration files: ## Coding Standards -We are using [`yamllint`](https://github.com/adrienverge/yamllint) to enforce coding standards in YAML files. +We use [`yamllint`](https://github.com/adrienverge/yamllint) to enforce coding standards in YAML files. If you do not have `yamllint` installed yet, run ```sh -$ brew install yamllint +brew install yamllint ``` to install `yamllint`. @@ -23,7 +23,7 @@ to install `yamllint`. Run ```sh -$ make coding-standards +make coding-standards ``` to detect coding standard violations. @@ -33,7 +33,7 @@ to detect coding standard violations. Run ```sh -$ make +make ``` to detect coding standard violations! @@ -43,7 +43,7 @@ to detect coding standard violations! :bulb: Run ```sh -$ make help +make help ``` to display a list of available targets with corresponding descriptions. diff --git a/.github/SECURITY.md b/.github/SECURITY.md new file mode 100644 index 0000000..e90d610 --- /dev/null +++ b/.github/SECURITY.md @@ -0,0 +1,17 @@ +# Security Policy + +## Supported Versions + +The following versions of `ergebnis/.github` have active support: + +- `^1.8.0` + +## Unsupported Versions + +The following versions of `ergebnis/.github` have reached their end of life: + +- `<1.8.0` + +## Reporting a Vulnerability + +If you believe that you have found a security vulnerability, please send an email to `am@localheinz.com`. Ensure to include all details required to understand the severity of the issue. diff --git a/.github/dependabot.yml b/.github/dependabot.yaml similarity index 95% rename from .github/dependabot.yml rename to .github/dependabot.yaml index 61f6b18..fc4c7b3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yaml @@ -1,4 +1,4 @@ -# https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/about-dependabot-version-updates +# https://docs.github.com/en/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 diff --git a/.github/settings.yml b/.github/settings.yml index 5ec4346..5d40ff0 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -1,4 +1,4 @@ -# https://github.com/probot/settings +# https://github.com/repository-settings/app branches: - name: "main" @@ -13,8 +13,8 @@ branches: require_code_owner_reviews: true required_approving_review_count: 1 required_status_checks: - contexts: - - "Coding Standards" + checks: + - context: "Coding Standards" strict: false restrictions: @@ -52,10 +52,6 @@ labels: color: "ee0701" description: "" - - name: "stale" - color: "eeeeee" - description: "" - # https://docs.github.com/en/rest/reference/repos#update-a-repository repository: @@ -66,11 +62,15 @@ repository: default_branch: "main" delete_branch_on_merge: true description: ":heart: Provides default community health files and composite actions for the @ergebnis organization." + enable_automated_security_fixes: true + enable_vulnerability_alerts: true + has_discussions: false has_downloads: false - has_issues: false + has_issues: true has_pages: false has_projects: false has_wiki: false + is_template: false name: ".github" private: false diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 76561fd..4bcb39d 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -14,6 +14,8 @@ jobs: runs-on: "ubuntu-latest" + timeout-minutes: 5 + steps: - name: "Checkout" uses: "actions/checkout@v4.1.1" diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 3c9222d..6212d9f 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -15,6 +15,8 @@ jobs: runs-on: "ubuntu-latest" + timeout-minutes: 5 + if: > github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' && @@ -32,8 +34,8 @@ jobs: - name: "Assign @ergebnis-bot" uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.8.0" with: - github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" assignee: "ergebnis-bot" + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Approve pull request" uses: "ergebnis/.github/actions/github/pull-request/approve@1.8.0" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c760eed..bbed7cd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,6 +13,8 @@ jobs: runs-on: "ubuntu-latest" + timeout-minutes: 5 + steps: - name: "Create release" uses: "ergebnis/.github/actions/github/release/create@1.8.0" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 8f59cb6..6b1217b 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -13,6 +13,8 @@ jobs: runs-on: "ubuntu-latest" + timeout-minutes: 5 + steps: - name: "Add labels based on branch name" uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.8.0" diff --git a/.yamllint.yaml b/.yamllint.yaml index 2c9e3b6..0f43625 100644 --- a/.yamllint.yaml +++ b/.yamllint.yaml @@ -1,7 +1,7 @@ extends: "default" ignore: | - .notes/ + .note/ rules: braces: diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..cabb837 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,16 @@ +# The MIT License (MIT) + +Copyright (c) 2019-2023 Andreas Möller + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated +documentation files (the _Software_), to deal in the Software without restriction, including without limitation the +rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit +persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the +Software. + +THE SOFTWARE IS PROVIDED **AS IS**, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE +WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR +OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index d3bbc3d..a1000a2 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,14 @@ # .github -[![Integrate](https://github.com/ergebnis/.github/workflows/Integrate/badge.svg?branch=main)](https://github.com/ergebnis/.github/actions) -[![Merge](https://github.com/ergebnis/.github/workflows/Merge/badge.svg?branch=main)](https://github.com/ergebnis/.github/actions) -[![Release](https://github.com/ergebnis/.github/workflows/Release/badge.svg?branch=main)](https://github.com/ergebnis/.github/actions) -[![Triage](https://github.com/ergebnis/.github/workflows/Triage/badge.svg?branch=main)](https://github.com/ergebnis/.github/actions) +[![Integrate](https://github.com/ergebnis/.github/workflows/Integrate/badge.svg)](https://github.com/ergebnis/.github/actions) +[![Merge](https://github.com/ergebnis/.github/workflows/Merge/badge.svg)](https://github.com/ergebnis/.github/actions) +[![Release](https://github.com/ergebnis/.github/workflows/Release/badge.svg)](https://github.com/ergebnis/.github/actions) -Provides community health files for the [@ergebnis](https://github.com/ergebnis) organization. - -:bulb: Also see [GitHub Docs: Creating a default community health file](https://docs.github.com/en/github/building-a-strong-community/creating-a-default-community-health-file). +This project provides [community health files](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/creating-a-default-community-health-file) and [composite actions](https://docs.github.com/en/actions/creating-actions/creating-a-composite-action) for the [@ergebnis](https://github.com/ergebnis) organization. ## Composite Actions -This repository provides the following composite actions: +This project provides the following composite actions: - [`ergebnis/.github/actions/composer/determine-cache-directory`](#composer-determine-cache-directory) - [`ergebnis/.github/actions/composer/determine-root-version`](#composer-determine-root-version) @@ -721,16 +718,30 @@ The directory configured by the `phive-home` directory is cached using [`actions ## Changelog -Please have a look at [`CHANGELOG.md`](CHANGELOG.md). +The maintainers of this project record notable changes to this project in a [changelog](CHANGELOG.md). ## Contributing -Please have a look at [`CONTRIBUTING.md`](.github/CONTRIBUTING.md). +The maintainers of this project suggest following the [contribution guide](.github/CONTRIBUTING.md). ## Code of Conduct -Please have a look at [`CODE_OF_CONDUCT.md`](CODE_OF_CONDUCT.md). +The maintainers of this project ask contributors to follow the [code of conduct](CODE_OF_CONDUCT.md). + +## General Support Policy + +The maintainers of this project provide limited support. + +You can support the maintenance of this project by [sponsoring @localheinz](https://github.com/sponsors/localheinz) or [requesting an invoice for services related to this project](mailto:am@localheinz.com?subject=ergebnis/.github:%20Requesting%20invoice%20for%20services). + +## Security Policy + +This project has a [security policy](.github/SECURITY.md). + +## License + +This project uses the [MIT license](LICENSE.md). -## Curious what I am building? +## Social -:mailbox_with_mail: [Subscribe to my list](https://localheinz.com/projects/), and I will occasionally send you an email to let you know what I am working on. +Follow [@localheinz](https://twitter.com/intent/follow?screen_name=localheinz) and [@ergebnis](https://twitter.com/intent/follow?screen_name=ergebnis) on Twitter. From 83680a4ce7e5cfb37275c7a769ae237c26dbecff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:45:09 +0100 Subject: [PATCH 117/170] Fix: Remove CODEOWNERS from location that is ignored --- CODEOWNERS | 1 - 1 file changed, 1 deletion(-) delete mode 100644 CODEOWNERS diff --git a/CODEOWNERS b/CODEOWNERS deleted file mode 100644 index 64bf50c..0000000 --- a/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* @localheinz From 5438e98a743030135fba55fede0371e654ead53c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 16 Dec 2023 14:46:30 +0100 Subject: [PATCH 118/170] Enhancement: Prepare release --- .github/SECURITY.md | 4 ++-- CHANGELOG.md | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index e90d610..fa5e79f 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -4,13 +4,13 @@ The following versions of `ergebnis/.github` have active support: -- `^1.8.0` +- `^1.9.0` ## Unsupported Versions The following versions of `ergebnis/.github` have reached their end of life: -- `<1.8.0` +- `<1.9.0` ## Reporting a Vulnerability diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fccf87..a1b196d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.8.0...main`][1.8.0...main]. +For a full diff see [`1.9.0...main`][1.9.0...main]. + +## [`1.9.0`][1.9.0] + +For a full diff see [`1.8.0...1.9.0`][1.8.0...1.9.0]. ### Changed @@ -144,6 +148,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.6.0]: https://github.com/ergebnis/.github/releases/tag/1.6.0 [1.7.0]: https://github.com/ergebnis/.github/releases/tag/1.7.0 [1.8.0]: https://github.com/ergebnis/.github/releases/tag/1.8.0 +[1.9.0]: https://github.com/ergebnis/.github/releases/tag/1.8.0 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -159,7 +164,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.5.1...1.6.0]: https://github.com/ergebnis/.github/compare/1.5.1...1.6.0 [1.6.0...1.7.0]: https://github.com/ergebnis/.github/compare/1.6.0...1.7.0 [1.7.0...1.8.0]: https://github.com/ergebnis/.github/compare/1.7.0...1.8.0 -[1.8.0...main]: https://github.com/ergebnis/.github/compare/1.8.0...main +[1.8.0...1.9.0]: https://github.com/ergebnis/.github/compare/1.8.0...1.9.0 +[1.9.0...main]: https://github.com/ergebnis/.github/compare/1.9.0...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 From 9a4d260964df6de99507b498ee51ebc3dd532c41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Dec 2023 22:03:43 +0000 Subject: [PATCH 119/170] github-actions(deps): Bump ergebnis/.github from 1.8.0 to 1.9.0 Bumps [ergebnis/.github](https://github.com/ergebnis/.github) from 1.8.0 to 1.9.0. - [Release notes](https://github.com/ergebnis/.github/releases) - [Changelog](https://github.com/ergebnis/.github/blob/main/CHANGELOG.md) - [Commits](https://github.com/ergebnis/.github/compare/1.8.0...1.9.0) --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 6212d9f..e6ca8cd 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -26,23 +26,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.0" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bbed7cd..dc949a5 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.8.0" + uses: "ergebnis/.github/actions/github/release/create@1.9.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 6b1217b..9a2c630 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 79eecefce0ab685ff6259596f410d0efd93535b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Jan 2024 22:37:10 +0000 Subject: [PATCH 120/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 3.3.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.2...v3.3.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 6146dcf..a79a472 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.3.2" + uses: "actions/cache@v3.3.3" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From a8194b3c9a2a5ff28f16287b94396449bd23df11 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jan 2024 22:52:40 +0000 Subject: [PATCH 121/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 3.3.3 to 4.0.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.3...v4.0.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index a79a472..3c4b233 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v3.3.3" + uses: "actions/cache@v4.0.0" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From ec3bdf83d737dc9886ff1fc6bf84189d9d29c05d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Feb 2024 22:21:10 +0000 Subject: [PATCH 122/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.0.0 to 4.0.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.0.0...v4.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 3c4b233..f0a2c0b 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.0.0" + uses: "actions/cache@v4.0.1" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From 592a21a88c301b2ef647c829ac1d2b87f36c512c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Mar 2024 22:15:45 +0000 Subject: [PATCH 123/170] github-actions(deps): Bump actions/checkout from 4.1.1 to 4.1.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 4bcb39d..29c6b55 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.1" + uses: "actions/checkout@v4.1.2" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 6b0be8dcd59dbc342f1d65d4c74d73daad74cd7d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Mar 2024 22:31:04 +0000 Subject: [PATCH 124/170] github-actions(deps): Bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.0.1 to 4.0.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.0.1...v4.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index f0a2c0b..5b4b96f 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.0.1" + uses: "actions/cache@v4.0.2" with: path: "${{ inputs.phive-home }}" key: "phive-hashFiles('**/phars.xml')" From 08aa34eef55ac493107f83b279f32167bdd8954f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Apr 2024 22:50:21 +0000 Subject: [PATCH 125/170] github-actions(deps): Bump actions/checkout from 4.1.2 to 4.1.3 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.2...v4.1.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 29c6b55..9c02795 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.2" + uses: "actions/checkout@v4.1.3" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 60d8c98d3876a956af1226fe4d78e99579f50b91 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Apr 2024 22:58:57 +0000 Subject: [PATCH 126/170] github-actions(deps): Bump actions/checkout from 4.1.3 to 4.1.4 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.3...v4.1.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 9c02795..40b007b 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.3" + uses: "actions/checkout@v4.1.4" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 7a33b90e9d9c675392d8110be3486de076694549 Mon Sep 17 00:00:00 2001 From: Nikolai Zujev <824109+jaymecd@users.noreply.github.com> Date: Tue, 30 Apr 2024 17:59:33 +0200 Subject: [PATCH 127/170] fix(actions) - expose correct variable name for branch name --- .../pull-request/add-label-based-on-branch-name/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index ea2346c..e753ad1 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -35,7 +35,7 @@ runs: if (context.eventName == 'workflow_run') { core.exportVariable("PULL_REQUEST_NUMBER", context.payload.workflow_run.pull_requests[0].number); - core.exportVariable("PULL_REQUEST_NUMBER", context.payload.workflow_run.pull_requests[0].head.ref); + core.exportVariable("PULL_REQUEST_BRANCH_NAME", context.payload.workflow_run.pull_requests[0].head.ref); return; } From a495b14e227254059753d3368eebfc880ed59d3f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 22:33:46 +0000 Subject: [PATCH 128/170] github-actions(deps): Bump actions/checkout from 4.1.4 to 4.1.5 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.4...v4.1.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 40b007b..f1e6b55 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.4" + uses: "actions/checkout@v4.1.5" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 25edd16452a529396913aa95ca29faecaf31fc1e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 16 May 2024 22:05:24 +0000 Subject: [PATCH 129/170] github-actions(deps): Bump actions/checkout from 4.1.5 to 4.1.6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.5 to 4.1.6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.5...v4.1.6) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index f1e6b55..78c66df 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.5" + uses: "actions/checkout@v4.1.6" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 3f8fc0a4777a275c6dd489350e2912d932c4fc4f Mon Sep 17 00:00:00 2001 From: lotyp Date: Fri, 7 Jun 2024 21:52:31 +0300 Subject: [PATCH 130/170] fix: wrong cache key for phive install action --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 5b4b96f..00dc4a8 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -29,7 +29,7 @@ runs: uses: "actions/cache@v4.0.2" with: path: "${{ inputs.phive-home }}" - key: "phive-hashFiles('**/phars.xml')" + key: "phive-${{ hashFiles('**/phars.xml') }}" restore-keys: "phive-" - name: "Install dependencies with phive" From c2f6b4664c7dca13b47a886098b5acf0779a89a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 7 Jun 2024 22:43:39 +0000 Subject: [PATCH 131/170] github-actions(deps): bump ergebnis/.github from 1.9.0 to 1.9.1 Bumps [ergebnis/.github](https://github.com/ergebnis/.github) from 1.9.0 to 1.9.1. - [Release notes](https://github.com/ergebnis/.github/releases) - [Changelog](https://github.com/ergebnis/.github/blob/main/CHANGELOG.md) - [Commits](https://github.com/ergebnis/.github/compare/1.9.0...1.9.1) --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index e6ca8cd..f2634dd 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -26,23 +26,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.1" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index dc949a5..b807454 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.9.0" + uses: "ergebnis/.github/actions/github/release/create@1.9.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 9a2c630..f8f2198 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From f529a1145f502e7e87c2a7c3a3d1487b399f9da4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 22:53:02 +0000 Subject: [PATCH 132/170] github-actions(deps): bump actions/checkout from 4.1.6 to 4.1.7 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.6 to 4.1.7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.6...v4.1.7) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 78c66df..11a23e1 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.6" + uses: "actions/checkout@v4.1.7" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From fb04508f1cba0e5f5e962a575ca332e8425d830e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 15 Jun 2024 13:43:15 +0200 Subject: [PATCH 133/170] Fix: Update CHANGELOG.md and SECURITY.md --- .github/SECURITY.md | 4 ++-- CHANGELOG.md | 18 +++++++++++++++--- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index fa5e79f..9fef931 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -4,13 +4,13 @@ The following versions of `ergebnis/.github` have active support: -- `^1.9.0` +- `^1.9.1` ## Unsupported Versions The following versions of `ergebnis/.github` have reached their end of life: -- `<1.9.0` +- `<1.9.1` ## Reporting a Vulnerability diff --git a/CHANGELOG.md b/CHANGELOG.md index a1b196d..90e26ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,15 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.9.0...main`][1.9.0...main]. +For a full diff see [`1.9.1...main`][1.9.1...main]. + +## [`1.9.1`][1.9.1] + +For a full diff see [`1.9.0...1.9.1`][1.9.0...1.9.1]. + +### Fixed + +- Fixed invalid attempt to calculate cache key for `phars.xml` with `hashfiles()` function ([#197]), by [@lotyp] ## [`1.9.0`][1.9.0] @@ -148,7 +156,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.6.0]: https://github.com/ergebnis/.github/releases/tag/1.6.0 [1.7.0]: https://github.com/ergebnis/.github/releases/tag/1.7.0 [1.8.0]: https://github.com/ergebnis/.github/releases/tag/1.8.0 -[1.9.0]: https://github.com/ergebnis/.github/releases/tag/1.8.0 +[1.9.0]: https://github.com/ergebnis/.github/releases/tag/1.9.0 +[1.9.1]: https://github.com/ergebnis/.github/releases/tag/1.9.1 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -165,7 +174,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.6.0...1.7.0]: https://github.com/ergebnis/.github/compare/1.6.0...1.7.0 [1.7.0...1.8.0]: https://github.com/ergebnis/.github/compare/1.7.0...1.8.0 [1.8.0...1.9.0]: https://github.com/ergebnis/.github/compare/1.8.0...1.9.0 -[1.9.0...main]: https://github.com/ergebnis/.github/compare/1.9.0...main +[1.9.0...1.9.1]: https://github.com/ergebnis/.github/compare/1.9.0...1.9.1 +[1.9.1...main]: https://github.com/ergebnis/.github/compare/1.9.1...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 @@ -187,5 +197,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#124]: https://github.com/ergebnis/.github/pull/124 [#142]: https://github.com/ergebnis/.github/pull/142 [#183]: https://github.com/ergebnis/.github/pull/183 +[#197]: https://github.com/ergebnis/.github/pull/197 [@localheinz]: https://github.com/localheinz +[@lotyp]: https://github.com/lotyp From 94d8e5bb6489043647112bbc324fbc414b8f7c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 15 Jun 2024 13:47:18 +0200 Subject: [PATCH 134/170] Fix: Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 90e26ef..6395c28 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.9.1...main`][1.9.1...main]. +### Fixed + +- Expose `PULL_REQUEST_BRANCH_NAME` instead of overwriting `PULL_REQUEST_NUMBER` environment variable when adding label based on branch name ([#194]), by [@jaymecd] + ## [`1.9.1`][1.9.1] For a full diff see [`1.9.0...1.9.1`][1.9.0...1.9.1]. @@ -197,7 +201,9 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#124]: https://github.com/ergebnis/.github/pull/124 [#142]: https://github.com/ergebnis/.github/pull/142 [#183]: https://github.com/ergebnis/.github/pull/183 +[#194]: https://github.com/ergebnis/.github/pull/194 [#197]: https://github.com/ergebnis/.github/pull/197 +[@jaymecd]: https://github.com/jaymecd [@localheinz]: https://github.com/localheinz [@lotyp]: https://github.com/lotyp From 66eb779160e3d9602937916c45041e404129c411 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 15 Jun 2024 13:48:25 +0200 Subject: [PATCH 135/170] Enhancement: Prepare release --- .github/SECURITY.md | 4 ++-- CHANGELOG.md | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 9fef931..43c4643 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -4,13 +4,13 @@ The following versions of `ergebnis/.github` have active support: -- `^1.9.1` +- `^1.9.2` ## Unsupported Versions The following versions of `ergebnis/.github` have reached their end of life: -- `<1.9.1` +- `<1.9.2` ## Reporting a Vulnerability diff --git a/CHANGELOG.md b/CHANGELOG.md index 6395c28..fc124cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.9.1...main`][1.9.1...main]. +For a full diff see [`1.9.2...main`][1.9.2...main]. + +## [`1.9.2`][1.9.2] + +For a full diff see [`1.9.1...1.9.2`][1.9.1...1.9.2]. ### Fixed @@ -162,6 +166,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.8.0]: https://github.com/ergebnis/.github/releases/tag/1.8.0 [1.9.0]: https://github.com/ergebnis/.github/releases/tag/1.9.0 [1.9.1]: https://github.com/ergebnis/.github/releases/tag/1.9.1 +[1.9.2]: https://github.com/ergebnis/.github/releases/tag/1.9.2 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -179,7 +184,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.7.0...1.8.0]: https://github.com/ergebnis/.github/compare/1.7.0...1.8.0 [1.8.0...1.9.0]: https://github.com/ergebnis/.github/compare/1.8.0...1.9.0 [1.9.0...1.9.1]: https://github.com/ergebnis/.github/compare/1.9.0...1.9.1 -[1.9.1...main]: https://github.com/ergebnis/.github/compare/1.9.1...main +[1.9.1...1.9.2]: https://github.com/ergebnis/.github/compare/1.9.1...1.9.2 +[1.9.2...main]: https://github.com/ergebnis/.github/compare/1.9.2...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 From 7e0b8c2a32ca8ca3f440ca774e40849e0417872d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Sat, 15 Jun 2024 13:50:18 +0200 Subject: [PATCH 136/170] Enhancement: Post to twitter.com about release --- .github/workflows/release.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index b807454..0678f8c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,3 +20,16 @@ jobs: uses: "ergebnis/.github/actions/github/release/create@1.9.1" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" + + - name: "Post to twitter.com about release" + uses: "Eomm/why-don-t-you-tweet@v2.0.0" + env: + TWITTER_ACCESS_TOKEN: "${{ secrets.ERGEBNIS_TWITTER_ACCESS_TOKEN }}" + TWITTER_ACCESS_TOKEN_SECRET: "${{ secrets.ERGEBNIS_TWITTER_ACCESS_TOKEN_SECRET }}" + TWITTER_CONSUMER_API_KEY: "${{ secrets.ERGEBNIS_TWITTER_CONSUMER_API_KEY }}" + TWITTER_CONSUMER_API_SECRET: "${{ secrets.ERGEBNIS_TWITTER_CONSUMER_API_KEY_SECRET }}" + with: + tweet-message: | + ❤️ Just released: ${{ github.event.repository.owner.login }}/${{ github.event.repository.name }}:${{ env.RELEASE_TAG }}. + + ${{ env.RELEASE_HTML_URL }} From ced538802fa2d924228e27610818e82b24d087bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 15 Jun 2024 11:50:59 +0000 Subject: [PATCH 137/170] github-actions(deps): bump ergebnis/.github from 1.9.1 to 1.9.2 Bumps [ergebnis/.github](https://github.com/ergebnis/.github) from 1.9.1 to 1.9.2. - [Release notes](https://github.com/ergebnis/.github/releases) - [Changelog](https://github.com/ergebnis/.github/blob/main/CHANGELOG.md) - [Commits](https://github.com/ergebnis/.github/compare/1.9.1...1.9.2) --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index f2634dd..1a34635 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -26,23 +26,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.1" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.2" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.1" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.2" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.1" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.2" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.1" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.2" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0678f8c..8cd75a1 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.9.1" + uses: "ergebnis/.github/actions/github/release/create@1.9.2" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index f8f2198..4f0f504 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.1" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.2" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From e9ebb12c88634528d87e81accea2f47f6e308cd3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:22:27 +0000 Subject: [PATCH 138/170] github-actions(deps): bump actions/checkout from 4.1.7 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.1.7...v4.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 11a23e1..ceb8ed7 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.1.7" + uses: "actions/checkout@v4.2.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 0b2b4798ac3e18d56dd2a402647fb86161275e63 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 22:07:27 +0000 Subject: [PATCH 139/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.0.2 to 4.1.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.0.2...v4.1.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 00dc4a8..f785c37 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.0.2" + uses: "actions/cache@v4.1.0" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From 597fcbb9973c1eaeab6124b736b28eb3f8a26fc6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 22:41:06 +0000 Subject: [PATCH 140/170] github-actions(deps): bump actions/checkout from 4.2.0 to 4.2.1 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.0...v4.2.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index ceb8ed7..d16f06d 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.2.0" + uses: "actions/checkout@v4.2.1" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 17c1ba6bd8f9557036041259f539591fafe4a639 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 22:12:53 +0000 Subject: [PATCH 141/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.1.0 to 4.1.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.1.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index f785c37..2dda245 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.1.0" + uses: "actions/cache@v4.1.1" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From 10011d58cc35a25878f4b82516c7f68e7bf94995 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 22:16:05 +0000 Subject: [PATCH 142/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.1.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 2dda245..dc49722 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.1.1" + uses: "actions/cache@v4.1.2" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From 7073952bcc7db8a96fa7c01b32ebafb38058b556 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 22:24:19 +0000 Subject: [PATCH 143/170] github-actions(deps): bump actions/checkout from 4.2.1 to 4.2.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.1...v4.2.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index d16f06d..4e8e1a6 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.2.1" + uses: "actions/checkout@v4.2.2" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 6b52448f0cdd8268de92b30975c86fc9fc170ef1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 5 Dec 2024 22:59:04 +0000 Subject: [PATCH 144/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.1.2 to 4.2.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.1.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index dc49722..7fc0aec 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.1.2" + uses: "actions/cache@v4.2.0" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From 957a75aa3793305483f147b4cdb40b2d2dfd76f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Tue, 21 Jan 2025 12:33:50 +0100 Subject: [PATCH 145/170] Fix: Adjust sponsoring link --- profile/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profile/README.md b/profile/README.md index 75330aa..5b84524 100644 --- a/profile/README.md +++ b/profile/README.md @@ -2,4 +2,4 @@ Do you like what you see? -[Sponsor @localheinz](https://github.com/sponsors/localheinz), who maintains these fine packages! +[Sponsor @ergebnis](https://github.com/sponsors/ergebnis)! From 498b6d44a96e760fcd6d7cf2efd3956f6d1ac246 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Feb 2025 22:59:38 +0000 Subject: [PATCH 146/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.2.0 to 4.2.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.0...v4.2.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 7fc0aec..595ecaa 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.2.0" + uses: "actions/cache@v4.2.1" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From 402e04ea8616b54cee78a20afa5789ba8137d5c6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Feb 2025 22:16:46 +0000 Subject: [PATCH 147/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.2.1 to 4.2.2. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.1...v4.2.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 595ecaa..50810df 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.2.1" + uses: "actions/cache@v4.2.2" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From bb23e2bbe90e3c0b73fb276737bdd30b8cb41756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 5 Mar 2025 00:41:20 +0100 Subject: [PATCH 148/170] Fix: Increase dependabot interval --- .github/dependabot.yaml | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml index fc4c7b3..6b0897f 100644 --- a/.github/dependabot.yaml +++ b/.github/dependabot.yaml @@ -12,7 +12,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -23,7 +23,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -34,7 +34,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -45,7 +45,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -56,7 +56,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -67,7 +67,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -78,7 +78,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -89,7 +89,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -100,7 +100,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -111,7 +111,7 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" - commit-message: include: "scope" @@ -122,4 +122,4 @@ updates: open-pull-requests-limit: 10 package-ecosystem: "github-actions" schedule: - interval: "daily" + interval: "weekly" From 3055b24a451588032b67bafc553ba59fb1d64776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 5 Mar 2025 00:44:03 +0100 Subject: [PATCH 149/170] Fix: Update CHANGELOG.md --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index fc124cd..f360137 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.9.2...main`][1.9.2...main]. +### Fixed + +- Updated `actions/cache` ([#207], [#208], [#209]), by [@dependabot] + ## [`1.9.2`][1.9.2] For a full diff see [`1.9.1...1.9.2`][1.9.1...1.9.2]. @@ -209,7 +213,11 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#183]: https://github.com/ergebnis/.github/pull/183 [#194]: https://github.com/ergebnis/.github/pull/194 [#197]: https://github.com/ergebnis/.github/pull/197 +[#207]: https://github.com/ergebnis/.github/pull/207 +[#208]: https://github.com/ergebnis/.github/pull/208 +[#209]: https://github.com/ergebnis/.github/pull/209 +[@dependabot]: https://github.com/dependabot [@jaymecd]: https://github.com/jaymecd [@localheinz]: https://github.com/localheinz [@lotyp]: https://github.com/lotyp From b7a813b437712bae6ea583a4071c631d2d8bee6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 5 Mar 2025 00:44:57 +0100 Subject: [PATCH 150/170] Enhancement: Prepare release --- .github/SECURITY.md | 4 ++-- CHANGELOG.md | 10 ++++++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index 43c4643..b3344d9 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -4,13 +4,13 @@ The following versions of `ergebnis/.github` have active support: -- `^1.9.2` +- `^1.9.3` ## Unsupported Versions The following versions of `ergebnis/.github` have reached their end of life: -- `<1.9.2` +- `<1.9.3` ## Reporting a Vulnerability diff --git a/CHANGELOG.md b/CHANGELOG.md index f360137..8183fdb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## Unreleased -For a full diff see [`1.9.2...main`][1.9.2...main]. +For a full diff see [`1.9.3...main`][1.9.3...main]. + +## [`1.9.3`][1.9.3] + +For a full diff see [`1.9.2...1.9.3`][1.9.2...1.9.3]. ### Fixed @@ -171,6 +175,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.9.0]: https://github.com/ergebnis/.github/releases/tag/1.9.0 [1.9.1]: https://github.com/ergebnis/.github/releases/tag/1.9.1 [1.9.2]: https://github.com/ergebnis/.github/releases/tag/1.9.2 +[1.9.3]: https://github.com/ergebnis/.github/releases/tag/1.9.3 [ca7f15d...1.0.0]: https://github.com/ergebnis/.github/compare/ca7f15d...1.0.0 [1.0.0...1.1.0]: https://github.com/ergebnis/.github/compare/1.0.0...1.1.0 @@ -189,7 +194,8 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [1.8.0...1.9.0]: https://github.com/ergebnis/.github/compare/1.8.0...1.9.0 [1.9.0...1.9.1]: https://github.com/ergebnis/.github/compare/1.9.0...1.9.1 [1.9.1...1.9.2]: https://github.com/ergebnis/.github/compare/1.9.1...1.9.2 -[1.9.2...main]: https://github.com/ergebnis/.github/compare/1.9.2...main +[1.9.2...1.9.3]: https://github.com/ergebnis/.github/compare/1.9.2...1.9.3 +[1.9.3...main]: https://github.com/ergebnis/.github/compare/1.9.3...main [#47]: https://github.com/ergebnis/.github/pull/47 [#48]: https://github.com/ergebnis/.github/pull/48 From 926748cf7324413968cff9ec4d85d5411a8a082a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 4 Mar 2025 23:46:15 +0000 Subject: [PATCH 151/170] github-actions(deps): bump ergebnis/.github from 1.9.2 to 1.9.3 Bumps [ergebnis/.github](https://github.com/ergebnis/.github) from 1.9.2 to 1.9.3. - [Release notes](https://github.com/ergebnis/.github/releases) - [Changelog](https://github.com/ergebnis/.github/blob/main/CHANGELOG.md) - [Commits](https://github.com/ergebnis/.github/compare/1.9.2...1.9.3) --- updated-dependencies: - dependency-name: ergebnis/.github dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 1a34635..99e0637 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -26,23 +26,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.2" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.2" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.3" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.2" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.2" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8cd75a1..885dc53 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.9.2" + uses: "ergebnis/.github/actions/github/release/create@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index 4f0f504..ccad00a 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.2" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 826932ad8851302db61b3a6d453ec6fae6fe5953 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 25 Mar 2025 00:35:25 +0000 Subject: [PATCH 152/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.2.2 to 4.2.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.2...v4.2.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 50810df..94e2c7c 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.2.2" + uses: "actions/cache@v4.2.3" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From eacdd88ed2c6f3402b9536a8c246c271780f37ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 23 Jun 2025 19:59:42 +0200 Subject: [PATCH 153/170] Fix: Adjust note related to sponsoring --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a1000a2..9046d07 100644 --- a/README.md +++ b/README.md @@ -732,7 +732,7 @@ The maintainers of this project ask contributors to follow the [code of conduct] The maintainers of this project provide limited support. -You can support the maintenance of this project by [sponsoring @localheinz](https://github.com/sponsors/localheinz) or [requesting an invoice for services related to this project](mailto:am@localheinz.com?subject=ergebnis/.github:%20Requesting%20invoice%20for%20services). +You can support the maintenance of this project by [sponsoring @ergebnis](https://github.com/sponsors/ergebnis). ## Security Policy From c5b97674e1346a6bc43be46be6713eaeb7d30116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 23 Jun 2025 20:14:17 +0200 Subject: [PATCH 154/170] Fix: Remove @localheinz from FUNDING.yaml --- FUNDING.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/FUNDING.yaml b/FUNDING.yaml index 8730580..7f9e90b 100644 --- a/FUNDING.yaml +++ b/FUNDING.yaml @@ -2,4 +2,3 @@ github: - "ergebnis" - - "localheinz" From 081775417ad8dfe220ab609c50ba06045c63cd54 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Wed, 9 Jul 2025 08:46:11 +0200 Subject: [PATCH 155/170] Fix: Remove FUNDING.yaml --- FUNDING.yaml | 4 ---- profile/README.md | 4 ---- 2 files changed, 8 deletions(-) delete mode 100644 FUNDING.yaml diff --git a/FUNDING.yaml b/FUNDING.yaml deleted file mode 100644 index 7f9e90b..0000000 --- a/FUNDING.yaml +++ /dev/null @@ -1,4 +0,0 @@ -# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/displaying-a-sponsor-button-in-your-repository - -github: - - "ergebnis" diff --git a/profile/README.md b/profile/README.md index 5b84524..c4c419c 100644 --- a/profile/README.md +++ b/profile/README.md @@ -1,5 +1 @@ :wave: - -Do you like what you see? - -[Sponsor @ergebnis](https://github.com/sponsors/ergebnis)! From f00ca55b8cf6ba19f768ca6dc007c81b08317fda Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 06:13:05 +0000 Subject: [PATCH 156/170] github-actions(deps): bump actions/checkout from 4.2.2 to 5.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.2 to 5.0.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4.2.2...v5.0.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/integrate.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integrate.yaml b/.github/workflows/integrate.yaml index 4e8e1a6..ded9d74 100644 --- a/.github/workflows/integrate.yaml +++ b/.github/workflows/integrate.yaml @@ -18,7 +18,7 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v4.2.2" + uses: "actions/checkout@v5.0.0" - name: "Lint YAML files" uses: "ibiqlik/action-yamllint@v3.1.1" From 2e9896d3b1a5007f983e33fa8c1907cb440fe4d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 08:22:47 +0000 Subject: [PATCH 157/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.2.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.3...v4.2.4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index 94e2c7c..ad48c0c 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.2.3" + uses: "actions/cache@v4.2.4" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}" From 1dcb80f2d39e87f241869cf74b5893fc43cd7ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 1 Sep 2025 07:06:00 +0200 Subject: [PATCH 158/170] Enhancement: Allow creating releases in draft mode --- CHANGELOG.md | 5 +++++ README.md | 1 + actions/github/release/create/action.yaml | 6 +++++- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8183fdb..ea34c6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.9.3...main`][1.9.3...main]. +### Changed + +- Adjusted `github/release/create` to allow creating releases in draft mode ([#214]), by [@localheinz] + ## [`1.9.3`][1.9.3] For a full diff see [`1.9.2...1.9.3`][1.9.2...1.9.3]. @@ -222,6 +226,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#207]: https://github.com/ergebnis/.github/pull/207 [#208]: https://github.com/ergebnis/.github/pull/208 [#209]: https://github.com/ergebnis/.github/pull/209 +[#214]: https://github.com/ergebnis/.github/pull/214 [@dependabot]: https://github.com/dependabot [@jaymecd]: https://github.com/jaymecd diff --git a/README.md b/README.md index 9046d07..a6a8eba 100644 --- a/README.md +++ b/README.md @@ -511,6 +511,7 @@ For details, see [`actions/github/release/create/action.yaml`](actions/github/re #### Inputs +- `draft`, optional: Whether to create a draft or a published release. - `github-token`, required: The GitHub token of a user with permission to create a release. #### Outputs diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 5898cf0..91e8fd6 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -9,6 +9,10 @@ name: "Create a release" description: "Creates a release" inputs: + draft: + description: "Whether to create a draft or a published release" + required: false + default: "false" github-token: description: "GitHub token of a user with permission to create a release" required: true @@ -35,7 +39,7 @@ runs: try { const response = await github.rest.repos.createRelease({ - draft: false, + draft: ${{ fromJSON(inputs.draft) }}, generate_release_notes: true, name: process.env.RELEASE_TAG, owner: context.repo.owner, From 100215e142d76bddd718f0d0c6d3c88a48d0b0d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 1 Sep 2025 07:22:30 +0200 Subject: [PATCH 159/170] Fix: Wording --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea34c6c..bc192c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ For a full diff see [`1.9.3...main`][1.9.3...main]. ### Changed -- Adjusted `github/release/create` to allow creating releases in draft mode ([#214]), by [@localheinz] +- Added a `draft` input to `github/release/create` to allow creating releases in draft mode ([#214]), by [@localheinz] ## [`1.9.3`][1.9.3] From 9b6bb602acd8b47dbc80743d8e4b37340a38591e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 1 Sep 2025 07:27:00 +0200 Subject: [PATCH 160/170] Enhancement: Add github/actions/publish to allow publishing a release --- CHANGELOG.md | 5 +++ README.md | 44 ++++++++++++++++++++++ actions/github/release/publish/action.yaml | 37 ++++++++++++++++++ 3 files changed, 86 insertions(+) create mode 100644 actions/github/release/publish/action.yaml diff --git a/CHANGELOG.md b/CHANGELOG.md index bc192c7..d619782 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), For a full diff see [`1.9.3...main`][1.9.3...main]. +### Added + +- Added `github/release/publish` to allow publishing a release ([#215]), by [@localheinz] + ### Changed - Added a `draft` input to `github/release/create` to allow creating releases in draft mode ([#214]), by [@localheinz] @@ -227,6 +231,7 @@ For a full diff see [`1.0.0...main`][1.0.0...main]. [#208]: https://github.com/ergebnis/.github/pull/208 [#209]: https://github.com/ergebnis/.github/pull/209 [#214]: https://github.com/ergebnis/.github/pull/214 +[#215]: https://github.com/ergebnis/.github/pull/215 [@dependabot]: https://github.com/dependabot [@jaymecd]: https://github.com/jaymecd diff --git a/README.md b/README.md index a6a8eba..498e3c9 100644 --- a/README.md +++ b/README.md @@ -525,6 +525,50 @@ none - The `RELEASE_ID` environment variable contains the release identifier. - The `RELEASE_TAG` environment variable contains the release tag. - The `RELEASE_UPLOAD_URL` environment variable contains the URL for uploading release assets. +- +### `ergebnis/.github/actions/github/release/publish` + +This action publishes a release. + +This is useful when you want to publish a release created in draft mode. + +```yaml + +name: "Release" + +on: + push: + tags: + - "**" + +jobs: + release: + name: "Release" + + runs-on: "ubuntu-latest" + + steps: + - name: "Publish release" + uses: "ergebnis/.github/actions/github/release/publish@1.10.0" + with: + release-id: "9001" + github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" +``` + +For details, see [`actions/github/release/publish/action.yaml`](actions/github/release/publish/action.yaml). + +#### Inputs + +- `github-token`, required: The GitHub token of a user with permission to create a release. +- `release-id`, required: The release identifier. + +#### Outputs + +none + +#### Side Effects + +- The release identified by the release identifier is published by the user who owns the GitHub token specified with the `github-token` input. ### `ergebnis/.github/actions/oh-dear/check/request-run` diff --git a/actions/github/release/publish/action.yaml b/actions/github/release/publish/action.yaml new file mode 100644 index 0000000..f9615b3 --- /dev/null +++ b/actions/github/release/publish/action.yaml @@ -0,0 +1,37 @@ +# https://docs.github.com/en/actions/creating-actions/creating-a-composite-action +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#inputs +# https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-composite-run-steps-actions +# https://docs.github.com/en/rest/releases/releases#update-a-release +# https://docs.github.com/en/developers/webhooks-and-events/webhooks/webhook-events-and-payloads#push + +name: "Publish a release" + +description: "Publishes a release" + +inputs: + github-token: + description: "GitHub token of a user with permission to publish a release" + required: true + release-id: + description: "The release identifier" + required: true + +runs: + using: "composite" + + steps: + - name: "Publish release" + uses: "actions/github-script@v7.0.1" + with: + github-token: "${{ inputs.github-token }}" + script: | + try { + const response = await github.rest.repos.updateRelease({ + draft: false, + owner: context.repo.owner, + release_id: ${{ inputs.release-id }}, + repo: context.repo.repo, + }); + } catch (error) { + core.setFailed(error.message); + } From 38ffd824c4638e3b16445b45da2c563903a37cb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 1 Sep 2025 07:31:36 +0200 Subject: [PATCH 161/170] Fix: Reference --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 498e3c9..9f3e252 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ This project provides the following composite actions: - [`ergebnis/.github/actions/github/pull-request/merge`](#github-pull-request-merge) - [`ergebnis/.github/actions/github/pull-request/request-review`](#github-pull-request-review) - [`ergebnis/.github/actions/github/release/create`](#github-release-create) +- [`ergebnis/.github/actions/github/release/publish`](#github-release-publish) - [`ergebnis/.github/actions/oh-dear/check/request-run`](#oh-dear-check-request-run) - [`ergebnis/.github/actions/oh-dear/maintenance-period/start`](#oh-dear-maintenance-period-start) - [`ergebnis/.github/actions/oh-dear/maintenance-period/stop`](#oh-dear-maintenance-period-stop) From 5902aef6f5d7c631f3978df92bce4abe1895b36a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 1 Sep 2025 07:35:34 +0200 Subject: [PATCH 162/170] Fix: Versions --- README.md | 54 +++++++++++++++++++++++++++--------------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 9f3e252..ad20f03 100644 --- a/README.md +++ b/README.md @@ -48,19 +48,19 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" - name: "Set up PHP" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.35.4" with: coverage: "none" php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.8.0" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.9.3" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3.0.8" + uses: "actions/cache@v4.2.4" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "composer-${{ hashFiles('composer.lock') }}" @@ -104,16 +104,16 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" - name: "Set up PHP" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.35.4" with: coverage: "none" php-version: "8.1" - name: "Determine composer root version" - uses: "ergebnis/.github/actions/composer/determine-root-version@1.8.0" + uses: "ergebnis/.github/actions/composer/determine-root-version@1.9.3" ``` For details, see [`actions/composer/determine-root-version/action.yaml`](actions/composer/determine-root-version/action.yaml). @@ -169,26 +169,26 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" - name: "Set up PHP" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.35.4" with: coverage: "none" php-version: "8.1" - name: "Determine composer cache directory" - uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.8.0" + uses: "ergebnis/.github/actions/composer/determine-cache-directory@1.9.3" - name: "Cache dependencies installed with composer" - uses: "actions/cache@v3.0.8" + uses: "actions/cache@v4.2.4" with: path: "${{ env.COMPOSER_CACHE_DIR }}" key: "composer-${{ matrix.dependencies }}-${{ hashFiles('composer.lock') }}" restore-keys: "composer-${{ matrix.dependencies }}-" - name: "Install ${{ matrix.dependencies }} dependencies with composer" - uses: "ergebnis/.github/actions/composer/install@1.8.0" + uses: "ergebnis/.github/actions/composer/install@1.9.3" with: dependencies: "${{ matrix.dependencies }}" ``` @@ -255,7 +255,7 @@ jobs: steps: - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.3" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" @@ -299,7 +299,7 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -353,7 +353,7 @@ jobs: steps: - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -405,7 +405,7 @@ jobs: steps: - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -458,7 +458,7 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.8.0" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" @@ -503,7 +503,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.8.0" + uses: "ergebnis/.github/actions/github/release/create@1.9.3" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" ``` @@ -591,12 +591,12 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" with: fetch-depth: 50 - name: "Request broken links check on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.8.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.9.3" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-check-id: "${{ secrets.OH_DEAR_BROKEN_LINKS_CHECK_ID }}" @@ -637,12 +637,12 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" with: fetch-depth: 50 - name: "Start maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.8.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/start@1.9.3" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" @@ -683,12 +683,12 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" with: fetch-depth: 50 - name: "Stop maintenance period on ohdear.app" - uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.8.0" + uses: "ergebnis/.github/actions/oh-dear/maintenance-period/stop@1.9.3" with: oh-dear-api-token: "${{ secrets.OH_DEAR_API_TOKEN }}" oh-dear-site-id: "${{ secrets.OH_DEAR_SITE_ID }}" @@ -730,17 +730,17 @@ jobs: steps: - name: "Checkout" - uses: "actions/checkout@v3.0.2" + uses: "actions/checkout@v5.0.0" - name: "Set up PHP" - uses: "shivammathur/setup-php@2.21.2" + uses: "shivammathur/setup-php@2.35.4" with: coverage: "none" php-version: "8.1" tools: "phive" - name: "Install dependencies with phive" - uses: "ergebnis/.github/actions/phive/install@1.8.0" + uses: "ergebnis/.github/actions/phive/install@1.9.3" with: trust-gpg-keys: "0x033E5F8D801A2F8D,0x2A8299CE842DD38C" ``` From 4103ff7c010d2c18dc84f72d6704227868412482 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Mon, 1 Sep 2025 07:36:08 +0200 Subject: [PATCH 163/170] Enhancement: Prepare release --- .github/SECURITY.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index b3344d9..cf38dba 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -4,13 +4,13 @@ The following versions of `ergebnis/.github` have active support: -- `^1.9.3` +- `^1.10.0` ## Unsupported Versions The following versions of `ergebnis/.github` have reached their end of life: -- `<1.9.3` +- `<1.10.0` ## Reporting a Vulnerability From aed9e06f5e1e76d034dca0e909b4adf9e8e93edf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 2 Sep 2025 14:08:52 +0000 Subject: [PATCH 164/170] github-actions(deps): bump ergebnis/.github from 1.9.3 to 1.10.0 Bumps [ergebnis/.github](https://github.com/ergebnis/.github) from 1.9.3 to 1.10.0. - [Release notes](https://github.com/ergebnis/.github/releases) - [Changelog](https://github.com/ergebnis/.github/blob/main/CHANGELOG.md) - [Commits](https://github.com/ergebnis/.github/compare/1.9.3...1.10.0) --- updated-dependencies: - dependency-name: ergebnis/.github dependency-version: 1.10.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/merge.yaml | 8 ++++---- .github/workflows/release.yaml | 2 +- .github/workflows/triage.yaml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/merge.yaml b/.github/workflows/merge.yaml index 99e0637..61d417f 100644 --- a/.github/workflows/merge.yaml +++ b/.github/workflows/merge.yaml @@ -26,23 +26,23 @@ jobs: steps: - name: "Request review from @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/request-review@1.9.3" + uses: "ergebnis/.github/actions/github/pull-request/request-review@1.10.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" reviewer: "ergebnis-bot" - name: "Assign @ergebnis-bot" - uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.9.3" + uses: "ergebnis/.github/actions/github/pull-request/add-assignee@1.10.0" with: assignee: "ergebnis-bot" github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Approve pull request" - uses: "ergebnis/.github/actions/github/pull-request/approve@1.9.3" + uses: "ergebnis/.github/actions/github/pull-request/approve@1.10.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" - name: "Merge pull request" - uses: "ergebnis/.github/actions/github/pull-request/merge@1.9.3" + uses: "ergebnis/.github/actions/github/pull-request/merge@1.10.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 885dc53..9b17703 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: steps: - name: "Create release" - uses: "ergebnis/.github/actions/github/release/create@1.9.3" + uses: "ergebnis/.github/actions/github/release/create@1.10.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" diff --git a/.github/workflows/triage.yaml b/.github/workflows/triage.yaml index ccad00a..1218ec2 100644 --- a/.github/workflows/triage.yaml +++ b/.github/workflows/triage.yaml @@ -17,6 +17,6 @@ jobs: steps: - name: "Add labels based on branch name" - uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.9.3" + uses: "ergebnis/.github/actions/github/pull-request/add-label-based-on-branch-name@1.10.0" with: github-token: "${{ secrets.ERGEBNIS_BOT_TOKEN }}" From 5216823684bf534e73a54316b73fd8c7882d64c7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 22:02:07 +0000 Subject: [PATCH 165/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/approve/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/approve/action.yaml b/actions/github/pull-request/approve/action.yaml index 960d917..1706036 100644 --- a/actions/github/pull-request/approve/action.yaml +++ b/actions/github/pull-request/approve/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -41,7 +41,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Approve pull request" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | From 9e6b7862a36d1208fff47f11d0e7a74d1a7e4d41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 22:02:19 +0000 Subject: [PATCH 166/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .../pull-request/add-label-based-on-branch-name/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml index e753ad1..c19114c 100644 --- a/actions/github/pull-request/add-label-based-on-branch-name/action.yaml +++ b/actions/github/pull-request/add-label-based-on-branch-name/action.yaml @@ -19,7 +19,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -43,7 +43,7 @@ runs: core.setFailed(`Unable to determine the pull request number and branch name for event "${context.eventName}"`); - name: "Add label to pull request based on branch name" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | From e308fa0ae95a4b1d80bf86b7269c9c42dc6a19a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 22:02:27 +0000 Subject: [PATCH 167/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/release/create/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/github/release/create/action.yaml b/actions/github/release/create/action.yaml index 91e8fd6..1c90e25 100644 --- a/actions/github/release/create/action.yaml +++ b/actions/github/release/create/action.yaml @@ -27,7 +27,7 @@ runs: shell: "bash" - name: "Create release" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | From 64a7590c4a885aa9b046bf2142bda60b1f84e94a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 22:02:54 +0000 Subject: [PATCH 168/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/request-review/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/request-review/action.yaml b/actions/github/pull-request/request-review/action.yaml index c3c5dbb..e134fb8 100644 --- a/actions/github/pull-request/request-review/action.yaml +++ b/actions/github/pull-request/request-review/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Request reviewer" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" env: REVIEWER: "${{ inputs.reviewer }}" with: From 3e817d2d8ae639750d21c1c27474403b2e969ffc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Sep 2025 22:03:05 +0000 Subject: [PATCH 169/170] github-actions(deps): bump actions/github-script Bumps [actions/github-script](https://github.com/actions/github-script) from 7.0.1 to 8.0.0. - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7.0.1...v8.0.0) --- updated-dependencies: - dependency-name: actions/github-script dependency-version: 8.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- actions/github/pull-request/add-assignee/action.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/actions/github/pull-request/add-assignee/action.yaml b/actions/github/pull-request/add-assignee/action.yaml index 2836deb..c3c1599 100644 --- a/actions/github/pull-request/add-assignee/action.yaml +++ b/actions/github/pull-request/add-assignee/action.yaml @@ -22,7 +22,7 @@ runs: steps: - name: "Determine pull request number" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" with: github-token: "${{ inputs.github-token }}" script: | @@ -44,7 +44,7 @@ runs: core.setFailed(`Unable to determine the pull request number for event "${context.eventName}"`); - name: "Add assignee to pull request" - uses: "actions/github-script@v7.0.1" + uses: "actions/github-script@v8.0.0" env: ASSIGNEE: "${{ inputs.assignee }}" with: From e65cde1e2f8cc9923cac264c43479ec49611eb86 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 30 Sep 2025 00:21:42 +0000 Subject: [PATCH 170/170] github-actions(deps): bump actions/cache in /actions/phive/install Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v4.2.4...v4.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- actions/phive/install/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/phive/install/action.yaml b/actions/phive/install/action.yaml index ad48c0c..2261c0c 100644 --- a/actions/phive/install/action.yaml +++ b/actions/phive/install/action.yaml @@ -26,7 +26,7 @@ runs: shell: "bash" - name: "Cache dependencies installed with phive" - uses: "actions/cache@v4.2.4" + uses: "actions/cache@v4.3.0" with: path: "${{ inputs.phive-home }}" key: "phive-${{ hashFiles('**/phars.xml') }}"