From aa31fe606b9d798b9867403cfe43b9de193b4756 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 4 Oct 2023 14:24:59 +0200 Subject: [PATCH 1/3] bump rubygems --- Gemfile.lock | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 49209e10..edb7a29c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -7,7 +7,7 @@ GEM cucumber (>= 2.4, < 6.0) rspec-expectations (~> 3.4) thor (~> 1.0) - backports (3.23.0) + backports (3.24.1) builder (3.2.4) childprocess (4.1.0) contracts (0.16.1) @@ -30,24 +30,24 @@ GEM diff-lcs (1.5.0) gherkin (5.1.0) multi_json (1.15.0) - multi_test (0.1.2) - mustermann (2.0.2) + multi_test (1.1.0) + mustermann (3.0.0) ruby2_keywords (~> 0.0.1) - rack (2.2.4) - rack-protection (2.2.3) - rack - rspec-expectations (3.11.0) + rack (2.2.8) + rack-protection (3.1.0) + rack (~> 2.2, >= 2.2.4) + rspec-expectations (3.12.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.11.0) - rspec-support (3.11.0) + rspec-support (~> 3.12.0) + rspec-support (3.12.1) ruby2_keywords (0.0.5) - sinatra (2.2.3) - mustermann (~> 2.0) - rack (~> 2.2) - rack-protection (= 2.2.3) + sinatra (3.1.0) + mustermann (~> 3.0) + rack (~> 2.2, >= 2.2.4) + rack-protection (= 3.1.0) tilt (~> 2.0) - thor (1.2.1) - tilt (2.0.11) + thor (1.2.2) + tilt (2.3.0) PLATFORMS java From abf8c35936e316ab765954ad65db570c256fec87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 4 Oct 2023 14:33:30 +0200 Subject: [PATCH 2/3] bump actions versions --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 05aca453..4fe7b116 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,7 +9,7 @@ jobs: BUNDLE_BIN: bin steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 @@ -18,7 +18,7 @@ jobs: bundler-cache: true - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: "1.18" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 43cbec06..369ddfbb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: "1.18" @@ -21,7 +21,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: mislav/bump-homebrew-formula-action@v1 + - uses: mislav/bump-homebrew-formula-action@v3 if: "!contains(github.ref, '-')" # skip prereleases with: formula-name: hub From 046c806dbd969635df2838adae4016a68e4d8205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohni=C4=87?= Date: Wed, 4 Oct 2023 14:33:46 +0200 Subject: [PATCH 3/3] add dependabot.yml --- .github/dependabot.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..b07d587a --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,18 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "bundler" + directory: "/" + schedule: + interval: "weekly" + - package-ecosystem: "gomod" + directory: "/" + schedule: + interval: "weekly" + ignore: + - dependency-name: "*" + update-types: + - version-update:semver-major \ No newline at end of file