Skip to content

Commit b95590b

Browse files
committed
MLE-24640 Updating Jekyll file to latest action versions
This is currently failing due to out-of-date GH actions.
1 parent 20f849e commit b95590b

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,8 @@
22
name: Deploy Jekyll with GitHub Pages dependencies preinstalled
33

44
on:
5-
# Runs on pushes targeting the default branch
65
push:
7-
branches: ["develop"]
6+
branches: ["main"]
87

98
# Allows you to run this workflow manually from the Actions tab
109
workflow_dispatch:
@@ -21,21 +20,20 @@ concurrency:
2120
cancel-in-progress: true
2221

2322
jobs:
24-
# Build job
2523
build:
2624
runs-on: ubuntu-latest
2725
steps:
2826
- name: Checkout
29-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
3028
- name: Setup Pages
31-
uses: actions/configure-pages@v3
29+
uses: actions/configure-pages@v5
3230
- name: Build with Jekyll
3331
uses: actions/jekyll-build-pages@v1
3432
with:
3533
source: ./docs/
3634
destination: ./_site
3735
- name: Upload artifact
38-
uses: actions/upload-pages-artifact@v1
36+
uses: actions/upload-pages-artifact@v3
3937

4038
# Deployment job
4139
deploy:
@@ -47,4 +45,4 @@ jobs:
4745
steps:
4846
- name: Deploy to GitHub Pages
4947
id: deployment
50-
uses: actions/deploy-pages@v1
48+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)