Skip to content

Commit 83866e9

Browse files
committed
Test update
1 parent 9b71ba7 commit 83866e9

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/jekyll.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
# This workflow uses actions that are not certified by GitHub.
2-
# They are provided by a third-party and are governed by
3-
# separate terms of service, privacy policy, and support
4-
# documentation.
5-
61
# Sample workflow for building and deploying a Jekyll site to GitHub Pages
72
name: Deploy Jekyll site to Pages
83

@@ -34,22 +29,22 @@ jobs:
3429
- name: Checkout
3530
uses: actions/checkout@v4
3631
- name: Setup Ruby
37-
uses: ruby/setup-ruby@8575951200e472d5f2d95c625da0c7bec8217c42 # v1.161.0
32+
uses: ruby/setup-ruby@v1
3833
with:
39-
ruby-version: '3.1' # Not needed with a .ruby-version file
40-
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
34+
ruby-version: '3.2' # Updated to the latest stable Ruby version
35+
bundler-cache: true # Runs 'bundle install' and caches installed gems automatically
4136
cache-version: 0 # Increment this number if you need to re-download cached gems
4237
- name: Setup Pages
4338
id: pages
44-
uses: actions/configure-pages@v5
39+
uses: actions/configure-pages@v6 # Updated to the latest version
4540
- name: Build with Jekyll
4641
# Outputs to the './_site' directory by default
4742
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4843
env:
4944
JEKYLL_ENV: production
5045
- name: Upload artifact
5146
# Automatically uploads an artifact from the './_site' directory by default
52-
uses: actions/upload-pages-artifact@v3
47+
uses: actions/upload-pages-artifact@v4 # Updated to the latest version
5348

5449
# Deployment job
5550
deploy:
@@ -61,4 +56,4 @@ jobs:
6156
steps:
6257
- name: Deploy to GitHub Pages
6358
id: deployment
64-
uses: actions/deploy-pages@v4
59+
uses: actions/deploy-pages@v5 # Updated to the latest version

0 commit comments

Comments
 (0)