Skip to content

Commit f669806

Browse files
committed
fix deployment failure
1 parent e2b59f2 commit f669806

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/jekyll.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,24 +32,24 @@ jobs:
3232
runs-on: ubuntu-latest
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
- name: Setup Ruby
3737
uses: ruby/setup-ruby@55283cc23133118229fd3f97f9336ee23a179fcf # v1.146.0
3838
with:
39-
ruby-version: '3.1' # Not needed with a .ruby-version file
39+
ruby-version: "3.1" # Not needed with a .ruby-version file
4040
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
4141
cache-version: 0 # Increment this number if you need to re-download cached gems
4242
- name: Setup Pages
4343
id: pages
44-
uses: actions/configure-pages@v3
44+
uses: actions/configure-pages@v4
4545
- name: Build with Jekyll
4646
# Outputs to the './_site' directory by default
4747
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4848
env:
4949
JEKYLL_ENV: production
5050
- name: Upload artifact
5151
# Automatically uploads an artifact from the './_site' directory by default
52-
uses: actions/upload-pages-artifact@v1
52+
uses: actions/upload-pages-artifact@v3
5353

5454
# Deployment job
5555
deploy:
@@ -61,4 +61,4 @@ jobs:
6161
steps:
6262
- name: Deploy to GitHub Pages
6363
id: deployment
64-
uses: actions/deploy-pages@v2
64+
uses: actions/deploy-pages@v4
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)