Skip to content

Commit 9ccba8d

Browse files
authored
fix: update github actions to fix deprecation warnings (#236)
1 parent 18708ea commit 9ccba8d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,24 @@ jobs:
3131
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:
3838
ruby-version: '3.0' # 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
- name: Setup Pages
4242
id: pages
43-
uses: actions/configure-pages@v2
43+
uses: actions/configure-pages@v5
4444
- name: Build with Jekyll
4545
# Outputs to the './_site' directory by default
4646
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
4747
env:
4848
JEKYLL_ENV: production
4949
- name: Upload artifact
5050
# Automatically uploads an artifact from the './_site' directory by default
51-
uses: actions/upload-pages-artifact@v1
51+
uses: actions/upload-pages-artifact@v3
5252

5353
# Deployment job
5454
deploy:
@@ -60,4 +60,4 @@ jobs:
6060
steps:
6161
- name: Deploy to GitHub Pages
6262
id: deployment
63-
uses: actions/deploy-pages@v1
63+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)