Skip to content

Commit 5c547ed

Browse files
committed
Merge branch 'bump-rubygems'
2 parents efa6685 + 046c806 commit 5c547ed

File tree

4 files changed

+38
-20
lines changed

4 files changed

+38
-20
lines changed

.github/dependabot.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
- package-ecosystem: "bundler"
8+
directory: "/"
9+
schedule:
10+
interval: "weekly"
11+
- package-ecosystem: "gomod"
12+
directory: "/"
13+
schedule:
14+
interval: "weekly"
15+
ignore:
16+
- dependency-name: "*"
17+
update-types:
18+
- version-update:semver-major

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
BUNDLE_BIN: bin
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Set up Ruby
1515
uses: ruby/setup-ruby@v1
@@ -18,7 +18,7 @@ jobs:
1818
bundler-cache: true
1919

2020
- name: Set up Go
21-
uses: actions/setup-go@v2
21+
uses: actions/setup-go@v4
2222
with:
2323
go-version: "1.18"
2424

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
runs-on: ubuntu-latest
1010

1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v4
1313

1414
- name: Set up Go
15-
uses: actions/setup-go@v2
15+
uses: actions/setup-go@v4
1616
with:
1717
go-version: "1.18"
1818

@@ -21,7 +21,7 @@ jobs:
2121
env:
2222
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2323

24-
- uses: mislav/bump-homebrew-formula-action@v1
24+
- uses: mislav/bump-homebrew-formula-action@v3
2525
if: "!contains(github.ref, '-')" # skip prereleases
2626
with:
2727
formula-name: hub

Gemfile.lock

+15-15
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GEM
77
cucumber (>= 2.4, < 6.0)
88
rspec-expectations (~> 3.4)
99
thor (~> 1.0)
10-
backports (3.23.0)
10+
backports (3.24.1)
1111
builder (3.2.4)
1212
childprocess (4.1.0)
1313
contracts (0.16.1)
@@ -30,24 +30,24 @@ GEM
3030
diff-lcs (1.5.0)
3131
gherkin (5.1.0)
3232
multi_json (1.15.0)
33-
multi_test (0.1.2)
34-
mustermann (2.0.2)
33+
multi_test (1.1.0)
34+
mustermann (3.0.0)
3535
ruby2_keywords (~> 0.0.1)
36-
rack (2.2.4)
37-
rack-protection (2.2.3)
38-
rack
39-
rspec-expectations (3.11.0)
36+
rack (2.2.8)
37+
rack-protection (3.1.0)
38+
rack (~> 2.2, >= 2.2.4)
39+
rspec-expectations (3.12.3)
4040
diff-lcs (>= 1.2.0, < 2.0)
41-
rspec-support (~> 3.11.0)
42-
rspec-support (3.11.0)
41+
rspec-support (~> 3.12.0)
42+
rspec-support (3.12.1)
4343
ruby2_keywords (0.0.5)
44-
sinatra (2.2.3)
45-
mustermann (~> 2.0)
46-
rack (~> 2.2)
47-
rack-protection (= 2.2.3)
44+
sinatra (3.1.0)
45+
mustermann (~> 3.0)
46+
rack (~> 2.2, >= 2.2.4)
47+
rack-protection (= 3.1.0)
4848
tilt (~> 2.0)
49-
thor (1.2.1)
50-
tilt (2.0.11)
49+
thor (1.2.2)
50+
tilt (2.3.0)
5151

5252
PLATFORMS
5353
java

0 commit comments

Comments
 (0)