Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/build-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
jekyll-pr-check:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: '0'

Expand All @@ -24,7 +24,7 @@ jobs:
with:
ruby-version: 2.7

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: blog-post-source
path: |
Expand All @@ -38,7 +38,7 @@ jobs:
format_output: true
custom_opts: '--drafts --future'

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: blog-content
path: ./_site
Expand All @@ -49,11 +49,11 @@ jobs:
run: |
echo "${{ github.event.number }}" > PR_NUMBER
echo "${{ github.event.pull_request.head.sha }}" > PR_SHA
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pull-request-number
path: PR_NUMBER
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: pull-request-sha
path: PR_SHA
Expand All @@ -63,7 +63,7 @@ jobs:
format: 'json'
- run: |
jq -r '.' <<< '${{ steps.get-files.outputs.all }}' > modified_files.json
- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v5
with:
name: modified-files
path: modified_files.json
2 changes: 1 addition & 1 deletion .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/publish-surge-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: download dist artifact
uses: dawidd6/action-download-artifact@v9
uses: dawidd6/action-download-artifact@v11
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: blog-content
path: _site
- name: PR number
uses: dawidd6/action-download-artifact@v9
uses: dawidd6/action-download-artifact@v11
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: pull-request-number
Expand All @@ -40,15 +40,15 @@ jobs:
fi
echo "PR_NUMBER=$pr_number" >> $GITHUB_ENV
- name: PR sha
uses: dawidd6/action-download-artifact@v9
uses: dawidd6/action-download-artifact@v11
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: pull-request-sha
- name: Grab pull request sha1
run: |
pr_sha=$(cat "PR_SHA")
echo "PR_SHA=$pr_sha" >> $GITHUB_ENV
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version: '20'
- name: publish
Expand All @@ -60,7 +60,7 @@ jobs:
echo "DEPLOY_DOMAIN=$DEPLOY_DOMAIN" >> $GITHUB_ENV
surge ./_site --domain $DEPLOY_DOMAIN
- name: 'Comment PR'
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
script: |
const { repo: { owner, repo } } = context;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
jekyll:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: '0'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: download modified files
uses: dawidd6/action-download-artifact@v9
uses: dawidd6/action-download-artifact@v11
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: modified-files
Expand All @@ -31,7 +31,7 @@ jobs:
jq -cr '.' modified-files/modified_files.json >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: PR sha
uses: dawidd6/action-download-artifact@v9
uses: dawidd6/action-download-artifact@v11
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: pull-request-sha
Expand All @@ -40,7 +40,7 @@ jobs:
pr_sha=$(cat "PR_SHA")
echo "PR_SHA=$pr_sha" >> $GITHUB_ENV
- name: download blog posts source
uses: dawidd6/action-download-artifact@v9
uses: dawidd6/action-download-artifact@v11
with:
workflow: ${{ github.event.workflow_run.workflow_id }}
name: blog-post-source
Expand Down
Loading