File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 jekyll-pr-check :
1616 runs-on : ubuntu-22.04
1717 steps :
18- - uses : actions/checkout@v4
18+ - uses : actions/checkout@v6
1919 with :
2020 fetch-depth : ' 0'
2121
2424 with :
2525 ruby-version : 2.7
2626
27- - uses : actions/upload-artifact@v4
27+ - uses : actions/upload-artifact@v7
2828 with :
2929 name : blog-post-source
3030 path : |
3838 format_output : true
3939 custom_opts : ' --drafts --future'
4040
41- - uses : actions/upload-artifact@v4
41+ - uses : actions/upload-artifact@v7
4242 with :
4343 name : blog-content
4444 path : ./_site
@@ -49,11 +49,11 @@ jobs:
4949 run : |
5050 echo "${{ github.event.number }}" > PR_NUMBER
5151 echo "${{ github.event.pull_request.head.sha }}" > PR_SHA
52- - uses : actions/upload-artifact@v4
52+ - uses : actions/upload-artifact@v7
5353 with :
5454 name : pull-request-number
5555 path : PR_NUMBER
56- - uses : actions/upload-artifact@v4
56+ - uses : actions/upload-artifact@v7
5757 with :
5858 name : pull-request-sha
5959 path : PR_SHA
6363 format : ' json'
6464 - run : |
6565 jq -r '.' <<< '${{ steps.get-files.outputs.all }}' > modified_files.json
66- - uses : actions/upload-artifact@v4
66+ - uses : actions/upload-artifact@v7
6767 with :
6868 name : modified-files
6969 path : modified_files.json
Original file line number Diff line number Diff line change @@ -20,19 +20,19 @@ jobs:
2020 runs-on : ubuntu-22.04
2121 steps :
2222 - name : Checkout
23- uses : actions/checkout@v4
23+ uses : actions/checkout@v6
2424 - name : Set up QEMU
25- uses : docker/setup-qemu-action@v3
25+ uses : docker/setup-qemu-action@v4
2626 - name : Set up Docker Buildx
27- uses : docker/setup-buildx-action@v3
27+ uses : docker/setup-buildx-action@v4
2828 - name : Login to docker.io
29- uses : docker/login-action@v3
29+ uses : docker/login-action@v4
3030 with :
3131 username : ${{ secrets.DOCKERHUB_USERNAME }}
3232 password : ${{ secrets.DOCKERHUB_PASSWORD }}
3333 registry : docker.io
3434 - name : Login to quay.io
35- uses : docker/login-action@v3
35+ uses : docker/login-action@v4
3636 with :
3737 username : ${{ secrets.QUAY_USERNAME }}
3838 password : ${{ secrets.QUAY_PASSWORD }}
Original file line number Diff line number Diff line change @@ -21,13 +21,13 @@ jobs:
2121 runs-on : ubuntu-22.04
2222 steps :
2323 - name : download dist artifact
24- uses : dawidd6/action-download-artifact@v9
24+ uses : dawidd6/action-download-artifact@v20
2525 with :
2626 workflow : ${{ github.event.workflow_run.workflow_id }}
2727 name : blog-content
2828 path : _site
2929 - name : PR number
30- uses : dawidd6/action-download-artifact@v9
30+ uses : dawidd6/action-download-artifact@v20
3131 with :
3232 workflow : ${{ github.event.workflow_run.workflow_id }}
3333 name : pull-request-number
@@ -40,15 +40,15 @@ jobs:
4040 fi
4141 echo "PR_NUMBER=$pr_number" >> $GITHUB_ENV
4242 - name : PR sha
43- uses : dawidd6/action-download-artifact@v9
43+ uses : dawidd6/action-download-artifact@v20
4444 with :
4545 workflow : ${{ github.event.workflow_run.workflow_id }}
4646 name : pull-request-sha
4747 - name : Grab pull request sha1
4848 run : |
4949 pr_sha=$(cat "PR_SHA")
5050 echo "PR_SHA=$pr_sha" >> $GITHUB_ENV
51- - uses : actions/setup-node@v4
51+ - uses : actions/setup-node@v6
5252 with :
5353 node-version : ' 20'
5454 - name : publish
6060 echo "DEPLOY_DOMAIN=$DEPLOY_DOMAIN" >> $GITHUB_ENV
6161 surge ./_site --domain $DEPLOY_DOMAIN
6262 - name : ' Comment PR'
63- uses : actions/github-script@v7
63+ uses : actions/github-script@v9
6464 with :
6565 script : |
6666 const { repo: { owner, repo } } = context;
Original file line number Diff line number Diff line change 1919 jekyll :
2020 runs-on : ubuntu-22.04
2121 steps :
22- - uses : actions/checkout@v4
22+ - uses : actions/checkout@v6
2323 with :
2424 fetch-depth : ' 0'
2525
Original file line number Diff line number Diff line change 2020 runs-on : ubuntu-22.04
2121 steps :
2222 - name : download modified files
23- uses : dawidd6/action-download-artifact@v9
23+ uses : dawidd6/action-download-artifact@v20
2424 with :
2525 workflow : ${{ github.event.workflow_run.workflow_id }}
2626 name : modified-files
3131 jq -cr '.' modified-files/modified_files.json >> $GITHUB_ENV
3232 echo 'EOF' >> $GITHUB_ENV
3333 - name : PR sha
34- uses : dawidd6/action-download-artifact@v9
34+ uses : dawidd6/action-download-artifact@v20
3535 with :
3636 workflow : ${{ github.event.workflow_run.workflow_id }}
3737 name : pull-request-sha
4040 pr_sha=$(cat "PR_SHA")
4141 echo "PR_SHA=$pr_sha" >> $GITHUB_ENV
4242 - name : download blog posts source
43- uses : dawidd6/action-download-artifact@v9
43+ uses : dawidd6/action-download-artifact@v20
4444 with :
4545 workflow : ${{ github.event.workflow_run.workflow_id }}
4646 name : blog-post-source
You can’t perform that action at this time.
0 commit comments