Skip to content

Commit

Permalink
Update jekyll.yml
Browse files Browse the repository at this point in the history
Workflows was complaining baout deprecated actions. Also about ruby/[email protected] but that version looks specific for a reason (?).
  • Loading branch information
B0r1sD authored Aug 1, 2024
1 parent e7e10db commit 70fd3a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/jekyll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.branch }}

Expand All @@ -29,7 +29,7 @@ jobs:

- name: Setup Pages
id: pages
uses: actions/configure-pages@v2
uses: actions/configure-pages@v5

- name: Install dependencies
run: |
Expand All @@ -45,7 +45,7 @@ jobs:
JEKYLL_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
deploy:
runs-on: ubuntu-latest
needs: build
Expand All @@ -65,4 +65,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v4

0 comments on commit 70fd3a9

Please sign in to comment.