From e107469676642634f2636cc0cb70a74ae0f3d23a Mon Sep 17 00:00:00 2001 From: "Mitch Harding (the weird one)" Date: Tue, 15 Aug 2023 14:37:08 -0400 Subject: [PATCH 01/16] Add workflows for CHANGELOG helper and license checker --- .github/dependabot.yml | 36 ++++++++++++++ .../workflows/dependabot-changelog-helper.yml | 36 ++++++++++++++ .github/workflows/license-check.yaml | 48 +++++++++++++++++++ 3 files changed, 120 insertions(+) create mode 100644 .github/dependabot.yml create mode 100644 .github/workflows/dependabot-changelog-helper.yml create mode 100644 .github/workflows/license-check.yaml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..275c774 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,36 @@ +# +# MIT License +# +# (C) Copyright 2023 Hewlett Packard Enterprise Development LP +# +# 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. +# +version: 2 +updates: + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" + assignees: + - "Cray-HPE/CMS-core-product-support" + labels: + - "github-actions-deps" + - "dependabot" + open-pull-requests-limit: 16 diff --git a/.github/workflows/dependabot-changelog-helper.yml b/.github/workflows/dependabot-changelog-helper.yml new file mode 100644 index 0000000..99f3d85 --- /dev/null +++ b/.github/workflows/dependabot-changelog-helper.yml @@ -0,0 +1,36 @@ +name: 'dependabot-pr-changelog-helper' +on: + pull_request: + types: + - opened + - synchronize + - reopened + - ready_for_review + - labeled + - unlabeled + +jobs: + changelog: + runs-on: ubuntu-latest + permissions: + # Give the default GITHUB_TOKEN write permission to commit and push the + # added or changed files to the repository. + contents: write + steps: + - uses: actions/checkout@v3 + with: + # Depending on your needs, you can use a token that will re-trigger workflows + # See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs + token: ${{ secrets.GITHUB_TOKEN }} + + - uses: dangoslen/dependabot-changelog-helper@v3 + with: + version: 'Unreleased' + activationLabel: 'dependabot' + changelogPath: './CHANGELOG.md' + + # This step is required for committing the changes to your branch. + # See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs + - uses: stefanzweifel/git-auto-commit-action@v4 + with: + commit_message: "Updated Changelog" \ No newline at end of file diff --git a/.github/workflows/license-check.yaml b/.github/workflows/license-check.yaml new file mode 100644 index 0000000..496e46d --- /dev/null +++ b/.github/workflows/license-check.yaml @@ -0,0 +1,48 @@ +# +# MIT License +# +# (C) Copyright 2023 Hewlett Packard Enterprise Development LP +# +# 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. +# +name: Check Licenses + +on: + pull_request: + +jobs: + license-check: + runs-on: ubuntu-latest + + container: + image: artifactory.algol60.net/csm-docker/stable/license-checker:latest + credentials: + username: ${{ secrets.ARTIFACTORY_ALGOL60_READONLY_USERNAME }} + password: ${{ secrets.ARTIFACTORY_ALGOL60_READONLY_TOKEN }} + + steps: + - uses: actions/checkout@v3 + + - name: Get changed files + id: changed-files + uses: tj-actions/changed-files@v37 + + - name: License Check + if: ${{ steps.changed-files.outputs.all_changed_files }} + run: /usr/local/bin/python3 /license_check/license_check.py ${{ steps.changed-files.outputs.all_changed_files }} From c896400f27f707b2d96a6f927e5e4a151916f8fb Mon Sep 17 00:00:00 2001 From: "Mitch Harding (the weird one)" Date: Fri, 20 Oct 2023 10:38:24 -0400 Subject: [PATCH 02/16] Fix Unreleased header in CHANGELOG to placate CHANGELOG helper workflow --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 31659f7..5846370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## [Unreleased] ## [2.6.1] - 2023-08-10 ### Changed From dfa675eb73461df3fe0f918c3ce2ed4ed67510bf Mon Sep 17 00:00:00 2001 From: "Mitch Harding (the weird one)" Date: Fri, 20 Oct 2023 13:06:47 -0400 Subject: [PATCH 03/16] Add license header to dependabot-changelog-helper.yml --- .../workflows/dependabot-changelog-helper.yml | 26 ++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-changelog-helper.yml b/.github/workflows/dependabot-changelog-helper.yml index 99f3d85..aa1e3db 100644 --- a/.github/workflows/dependabot-changelog-helper.yml +++ b/.github/workflows/dependabot-changelog-helper.yml @@ -1,3 +1,26 @@ +# +# MIT License +# +# (C) Copyright 2023 Hewlett Packard Enterprise Development LP +# +# 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. +# name: 'dependabot-pr-changelog-helper' on: pull_request: @@ -33,4 +56,5 @@ jobs: # See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs - uses: stefanzweifel/git-auto-commit-action@v4 with: - commit_message: "Updated Changelog" \ No newline at end of file + commit_message: "Updated Changelog" + From bcb43d605f049b41b68a8c912200539084fab8b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 14:39:43 +0000 Subject: [PATCH 04/16] Bump tj-actions/changed-files from 37 to 39 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 37 to 39. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v37...v39) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/license-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/license-check.yaml b/.github/workflows/license-check.yaml index 496e46d..800a6a0 100644 --- a/.github/workflows/license-check.yaml +++ b/.github/workflows/license-check.yaml @@ -41,7 +41,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v37 + uses: tj-actions/changed-files@v39 - name: License Check if: ${{ steps.changed-files.outputs.all_changed_files }} From a35c2ea1e457bf0ebc14cfe974c4efeb24958791 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Fri, 20 Oct 2023 14:40:00 +0000 Subject: [PATCH 05/16] Updated Changelog --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5846370..feaf738 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Dependencies +- Bump `tj-actions/changed-files` from 37 to 39 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30)) + ## [2.6.1] - 2023-08-10 ### Changed - Disabled concurrent Jenkins builds on same branch/commit @@ -31,4 +34,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for SLES SP4 ### Changed -- Convert to gitflow/gitversion. +- Convert to gitflow/gitversion. \ No newline at end of file From cb730be84ca3ee951692ee1def4e7ff8d783c53e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 17:09:06 +0000 Subject: [PATCH 06/16] Bump stefanzweifel/git-auto-commit-action from 4 to 5 Dependabot couldn't find the original pull request head commit, d483d2fec50f56c04bf467fb143a1e2c8b49a6ce. --- .github/workflows/dependabot-changelog-helper.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dependabot-changelog-helper.yml b/.github/workflows/dependabot-changelog-helper.yml index aa1e3db..40bf64e 100644 --- a/.github/workflows/dependabot-changelog-helper.yml +++ b/.github/workflows/dependabot-changelog-helper.yml @@ -54,7 +54,7 @@ jobs: # This step is required for committing the changes to your branch. # See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs - - uses: stefanzweifel/git-auto-commit-action@v4 + - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "Updated Changelog" From f435f15534fe8640dac23438da64167b10206bb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Fri, 20 Oct 2023 17:09:39 +0000 Subject: [PATCH 07/16] Updated Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index feaf738..825bbd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Dependencies - Bump `tj-actions/changed-files` from 37 to 39 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30)) +- Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#31](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/31)) ## [2.6.1] - 2023-08-10 ### Changed From 1cc457376fc60aff290b3882a9cb044cc9bf05ac Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Oct 2023 17:11:09 +0000 Subject: [PATCH 08/16] Bump actions/checkout from 3 to 4 Dependabot couldn't find the original pull request head commit, 4bd5d9ecc0de81eee46471130697ce61d8ee94ab. --- .github/workflows/dependabot-changelog-helper.yml | 2 +- .github/workflows/license-check.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dependabot-changelog-helper.yml b/.github/workflows/dependabot-changelog-helper.yml index 40bf64e..0c49d88 100644 --- a/.github/workflows/dependabot-changelog-helper.yml +++ b/.github/workflows/dependabot-changelog-helper.yml @@ -40,7 +40,7 @@ jobs: # added or changed files to the repository. contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Depending on your needs, you can use a token that will re-trigger workflows # See https://github.com/stefanzweifel/git-auto-commit-action#commits-of-this-action-do-not-trigger-new-workflow-runs diff --git a/.github/workflows/license-check.yaml b/.github/workflows/license-check.yaml index 800a6a0..97fb468 100644 --- a/.github/workflows/license-check.yaml +++ b/.github/workflows/license-check.yaml @@ -37,7 +37,7 @@ jobs: password: ${{ secrets.ARTIFACTORY_ALGOL60_READONLY_TOKEN }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get changed files id: changed-files From 36fcc6be0455b5ceae10a7f3b2c8ab4778e18987 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Fri, 20 Oct 2023 17:11:27 +0000 Subject: [PATCH 09/16] Updated Changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 825bbd0..7259dc0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Dependencies - Bump `tj-actions/changed-files` from 37 to 39 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30)) - Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#31](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/31)) +- Bump `actions/checkout` from 3 to 4 ([#29](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/29)) ## [2.6.1] - 2023-08-10 ### Changed From 35d19e9c526db0440ac48afc9a1ae7392de46b24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Oct 2023 14:49:38 +0000 Subject: [PATCH 10/16] Bump tj-actions/changed-files from 39 to 40 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 39 to 40. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v39...v40) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/license-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/license-check.yaml b/.github/workflows/license-check.yaml index 97fb468..14a875f 100644 --- a/.github/workflows/license-check.yaml +++ b/.github/workflows/license-check.yaml @@ -41,7 +41,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v39 + uses: tj-actions/changed-files@v40 - name: License Check if: ${{ steps.changed-files.outputs.all_changed_files }} From cbda6be1b90c5788b75ed452c0fc07af43661b05 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Thu, 26 Oct 2023 14:49:56 +0000 Subject: [PATCH 11/16] Updated Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7259dc0..88ad96e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Dependencies -- Bump `tj-actions/changed-files` from 37 to 39 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30)) +- Bump `tj-actions/changed-files` from 37 to 40 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30), [#32](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/32)) - Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#31](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/31)) - Bump `actions/checkout` from 3 to 4 ([#29](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/29)) From d135100ee04e3303ca2f61afd083c86a5d6723c4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Dec 2023 14:42:30 +0000 Subject: [PATCH 12/16] Bump tj-actions/changed-files from 40 to 41 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 40 to 41. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v40...v41) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/license-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/license-check.yaml b/.github/workflows/license-check.yaml index 14a875f..9ad3183 100644 --- a/.github/workflows/license-check.yaml +++ b/.github/workflows/license-check.yaml @@ -41,7 +41,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v40 + uses: tj-actions/changed-files@v41 - name: License Check if: ${{ steps.changed-files.outputs.all_changed_files }} From aa881a2ded71d7804d9b7dca4bd9399497752bbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Mon, 25 Dec 2023 14:42:44 +0000 Subject: [PATCH 13/16] Updated Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 88ad96e..21a2d40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Dependencies -- Bump `tj-actions/changed-files` from 37 to 40 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30), [#32](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/32)) +- Bump `tj-actions/changed-files` from 37 to 41 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30), [#32](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/32), [#33](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/33)) - Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#31](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/31)) - Bump `actions/checkout` from 3 to 4 ([#29](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/29)) From 016af3016cdb7bbe50f1015f8f68c1423f9287b3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 14:41:51 +0000 Subject: [PATCH 14/16] Bump tj-actions/changed-files from 41 to 42 Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 41 to 42. - [Release notes](https://github.com/tj-actions/changed-files/releases) - [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md) - [Commits](https://github.com/tj-actions/changed-files/compare/v41...v42) --- updated-dependencies: - dependency-name: tj-actions/changed-files dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/license-check.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/license-check.yaml b/.github/workflows/license-check.yaml index 9ad3183..93d1e27 100644 --- a/.github/workflows/license-check.yaml +++ b/.github/workflows/license-check.yaml @@ -41,7 +41,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v41 + uses: tj-actions/changed-files@v42 - name: License Check if: ${{ steps.changed-files.outputs.all_changed_files }} From 72f90466f2e7c582aa6b5daaf9ebe97d32d277d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Thu, 18 Jan 2024 14:42:06 +0000 Subject: [PATCH 15/16] Updated Changelog --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 21a2d40..ac7efb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] ### Dependencies -- Bump `tj-actions/changed-files` from 37 to 41 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30), [#32](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/32), [#33](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/33)) +- Bump `tj-actions/changed-files` from 37 to 42 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30), [#32](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/32), [#33](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/33), [#35](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/35)) - Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#31](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/31)) - Bump `actions/checkout` from 3 to 4 ([#29](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/29)) From 83f7f17fa84bd0c2105fd0ee229ac6b7bed4d5ae Mon Sep 17 00:00:00 2001 From: "Mitch Harding (the weird one)" Date: Fri, 23 Feb 2024 11:40:02 -0500 Subject: [PATCH 16/16] Release 2.7.0 for CSM 1.6 --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac7efb9..e9a1aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.7.0] - 2024-02-23 ### Dependencies - Bump `tj-actions/changed-files` from 37 to 42 ([#30](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/30), [#32](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/32), [#33](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/33), [#35](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/35)) - Bump `stefanzweifel/git-auto-commit-action` from 4 to 5 ([#31](https://github.com/Cray-HPE/cf-cme-ca-cert/pull/31))