Skip to content

Commit 75ff7c0

Browse files
Bumped version of workflow actions
- actions/checkout - actions/configure-pages - actions/upload-pages-artifact - actions/deploy-pages
1 parent ae3fcd6 commit 75ff7c0

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/pages.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,14 @@ concurrency:
2727
cancel-in-progress: true
2828

2929
jobs:
30-
# Build job
3130
build:
3231
runs-on: ubuntu-latest
3332
defaults:
3433
run:
3534
working-directory: docs
3635
steps:
3736
- name: Checkout
38-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3938
- name: Setup Ruby
4039
uses: ruby/setup-ruby@v1
4140
with:
@@ -45,19 +44,17 @@ jobs:
4544
working-directory: '${{ github.workspace }}/docs' # Use docs/ directory
4645
- name: Setup Pages
4746
id: pages
48-
uses: actions/configure-pages@v3
47+
uses: actions/configure-pages@v4
4948
- name: Build with Jekyll
5049
# Outputs to the './_site' directory by default
5150
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
5251
env:
5352
JEKYLL_ENV: production
5453
- name: Upload artifact
5554
# Automatically uploads an artifact from the './_site' directory by default
56-
uses: actions/upload-pages-artifact@v1
55+
uses: actions/upload-pages-artifact@v3
5756
with:
5857
path: "docs/_site/"
59-
60-
# Deployment job
6158
deploy:
6259
environment:
6360
name: github-pages
@@ -67,4 +64,4 @@ jobs:
6764
steps:
6865
- name: Deploy to GitHub Pages
6966
id: deployment
70-
uses: actions/deploy-pages@v2
67+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)