diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4eeafebe..0aab5f12 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,17 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - version: 2 updates: - - package-ecosystem: "" # See documentation for possible values - directory: "/" # Location of package manifests + # raise PRs for gem updates + - package-ecosystem: bundler + directory: "/" + schedule: + interval: daily + time: "13:00" + open-pull-requests-limit: 10 + + # Maintain dependencies for GitHub Actions + - package-ecosystem: github-actions + directory: "/" schedule: - interval: "daily" + interval: daily + time: "13:00" + open-pull-requests-limit: 10 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 91983871..2a706adb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest if: github.repository_owner == 'voxpupuli' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install Ruby 3.1 uses: ruby/setup-ruby@v1 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 14ed99f7..40326b86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -30,7 +30,7 @@ jobs: env: COVERAGE: ${{ matrix.coverage }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Ruby ${{ matrix.ruby }} uses: ruby/setup-ruby@v1 with: @@ -40,3 +40,10 @@ jobs: run: bundle exec rake ${{ matrix.rake_task }} - name: Build gem run: gem build *.gemspec + tests: + needs: + - test + runs-on: ubuntu-latest + name: Test suite + steps: + - run: echo Test suite completed diff --git a/CHANGELOG.md b/CHANGELOG.md index 94342c2c..95988315 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ # Changelog -## [v4.1.0](https://github.com/voxpupuli/json-schema/tree/v4.1.0) (2023-09-15) +## [v4.1.1](https://github.com/voxpupuli/json-schema/tree/v4.1.1) (2023-09-15) + +[Full Changelog](https://github.com/voxpupuli/json-schema/compare/v4.1.0...v4.1.1) + +**Merged pull requests:** + +- Add dummy CI job we can depend on [\#503](https://github.com/voxpupuli/json-schema/pull/503) ([bastelfreak](https://github.com/bastelfreak)) +- build\(deps\): bump actions/checkout from 2 to 4 [\#502](https://github.com/voxpupuli/json-schema/pull/502) ([dependabot[bot]](https://github.com/apps/dependabot)) +- dependabot: check for github actions and gems [\#501](https://github.com/voxpupuli/json-schema/pull/501) ([bastelfreak](https://github.com/bastelfreak)) + +## [v4.1.0](https://github.com/voxpupuli/json-schema/tree/v4.1.0) (2023-07-24) [Full Changelog](https://github.com/voxpupuli/json-schema/compare/v4.0.0...v4.1.0) diff --git a/VERSION.yml b/VERSION.yml index f533f30e..db3cd42e 100644 --- a/VERSION.yml +++ b/VERSION.yml @@ -1,3 +1,3 @@ major: 4 minor: 1 -patch: 0 +patch: 1