Skip to content

Commit d3bc588

Browse files
authored
Merge pull request #505 from owasp-noir/update-docs-dependencies
chore: Update Ruby version to 3.4 and add csv and base64 gems to Gemfile
2 parents 36b262a + b767e55 commit d3bc588

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.github/workflows/jekyll.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ jobs:
3333
- name: Checkout
3434
uses: actions/checkout@v4
3535
- name: Setup Ruby
36-
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
36+
uses: ruby/setup-ruby@v1.213.0
3737
with:
38-
ruby-version: '3.2' # Not needed with a .ruby-version file
38+
ruby-version: '3.4' # Not needed with a .ruby-version file
3939
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4040
cache-version: 0 # Increment this number if you need to re-download cached gems
4141
working-directory: docs # Needed if your Gemfile is not in the root directory

docs/Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ gem "jekyll", "~> 4.3.3" # installed by `gem jekyll`
66
# Theme
77
gem "just-the-docs"
88

9+
# Dependencies
10+
gem "csv"
11+
gem "base64"
12+
913
# Plugins
1014
group :jekyll_plugins do
1115
gem "jekyll-securitytxt"

docs/Gemfile.lock

+8-4
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@ GEM
33
specs:
44
addressable (2.8.7)
55
public_suffix (>= 2.0.2, < 7.0)
6+
base64 (0.2.0)
67
bigdecimal (3.1.8)
78
colorator (1.1.0)
89
concurrent-ruby (1.3.4)
10+
csv (3.3.2)
911
em-websocket (0.5.3)
1012
eventmachine (>= 0.12.9)
1113
http_parser.rb (~> 0)
1214
eventmachine (1.2.7)
13-
ffi (1.17.0-arm64-darwin)
14-
ffi (1.17.0-x86_64-linux-gnu)
15+
ffi (1.17.1-arm64-darwin)
16+
ffi (1.17.1-x86_64-linux-gnu)
1517
forwardable-extended (2.6.0)
16-
google-protobuf (4.28.2-arm64-darwin)
18+
google-protobuf (4.29.3-arm64-darwin)
1719
bigdecimal
1820
rake (>= 13)
19-
google-protobuf (4.28.2-x86_64-linux)
21+
google-protobuf (4.29.3-x86_64-linux)
2022
bigdecimal
2123
rake (>= 13)
2224
http_parser.rb (0.8.0)
@@ -88,6 +90,8 @@ PLATFORMS
8890
x86_64-linux
8991

9092
DEPENDENCIES
93+
base64
94+
csv
9195
jekyll (~> 4.3.3)
9296
jekyll-securitytxt
9397
jekyll-sitemap

0 commit comments

Comments
 (0)