From db0edf0deb5ffba6b9aedf6ad8a0d51c13f50be1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 10 Sep 2023 02:38:06 +0000 Subject: [PATCH] 16: Bump actions/checkout from 3.3.0 to 4.0.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 3.3.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.3.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/dependabot.yml | 8 +++----- .github/workflows/ci.yaml | 6 +++--- .github/workflows/linter.yaml | 2 +- CHANGELOG.md | 6 ++++++ 4 files changed, 13 insertions(+), 9 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4c81049..64011f2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,8 +5,6 @@ updates: directory: "/" schedule: interval: "weekly" - - - package-ecosystem: "docker" - directory: "/" - schedule: - interval: "weekly" + ignore: + - dependency-name: "*" + update-types: ["version-update:semver-minor"] diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 22c03c5..a700dc7 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -11,7 +11,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Validate the changelog uses: denisa/clq-action@v1 id: clq-validate @@ -34,7 +34,7 @@ jobs: if: github.event_name == 'pull_request' || github.ref == 'refs/heads/main' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - name: Extract tag from the changelog uses: denisa/clq-action@v1 id: clq-extract @@ -48,7 +48,7 @@ jobs: needs: [test, validate-release] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 - uses: denisa/clq-action@v1 id: clq-extract with: diff --git a/.github/workflows/linter.yaml b/.github/workflows/linter.yaml index 97e0910..e6ab02b 100644 --- a/.github/workflows/linter.yaml +++ b/.github/workflows/linter.yaml @@ -12,7 +12,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.3.0 + - uses: actions/checkout@v4 with: fetch-depth: 0 - run: cat .github/super-linter.env >> "$GITHUB_ENV" diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fd9fd9..a5f8267 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,12 @@ Categories, defined in [changemap.json](.github/clq/changemap.json)): - `Fixed` for any bugfixes. - `Security` in case of vulnerabilities. +## [1.0.6] - 2022-09-09 + +### Fixed + +- bump actions/checkout to v4 and use major version + ## [1.0.5] - 2022-09-09 ### Fixed