Skip to content

Commit 7bb137d

Browse files
nevalsarharshad_zade
andcommitted
fix: resolve standards violations and navigation gaps
Co-authored-by: harshad_zade <zade@jpl.nasa.gov>
2 parents c330890 + 8fbd1ef commit 7bb137d

514 files changed

Lines changed: 32243 additions & 554 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/jekyll-github-pages-deploy.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,27 +28,26 @@ concurrency:
2828
jobs:
2929
# Build job
3030
build:
31-
runs-on: ubuntu-latest
31+
runs-on: ubuntu-22.04
3232
steps:
3333
- name: Checkout
34-
uses: actions/checkout@v3
34+
uses: actions/checkout@v4
3535
- name: Setup Ruby
36-
uses: ruby/setup-ruby@ee2113536afb7f793eed4ce60e8d3b26db912da4 # v1.127.0
36+
uses: ruby/setup-ruby@v1
3737
with:
38-
ruby-version: '3.0' # Not needed with a .ruby-version file
3938
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4039
cache-version: 0 # Increment this number if you need to re-download cached gems
4140
- name: Setup Pages
4241
id: pages
43-
uses: actions/configure-pages@v2
42+
uses: actions/configure-pages@v5
4443
- name: Build with Jekyll
4544
# Outputs to the './_site' directory by default
4645
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4746
env:
4847
JEKYLL_ENV: production
4948
- name: Upload artifact
5049
# Automatically uploads an artifact from the './_site' directory by default
51-
uses: actions/upload-pages-artifact@v1
50+
uses: actions/upload-pages-artifact@v3
5251

5352
# Deployment job
5453
deploy:
@@ -60,4 +59,4 @@ jobs:
6059
steps:
6160
- name: Deploy to GitHub Pages
6261
id: deployment
63-
uses: actions/deploy-pages@v1
62+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@ vendor/
1010

1111
# Ignore others
1212
.DS_Store
13+
14+
# Ignore review workflow files
15+
.gemini/
16+
.codex/
17+
.reviews/
18+

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.2.2

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "https://rubygems.org"
22

3-
gem "github-pages", "~> 214", group: :jekyll_plugins
3+
gem "github-pages", "~> 232", group: :jekyll_plugins
44

55
group :jekyll_plugins do
66
gem "jekyll-paginate"
@@ -13,6 +13,7 @@ end
1313

1414
gem "nokogiri", ">= 1.10.8"
1515
gem "kramdown", ">= 2.3.0"
16+
gem 'webrick', "~> 1.7"
1617
gem "minimal-mistakes-jekyll"
1718

1819

0 commit comments

Comments
 (0)