Skip to content

Commit

Permalink
Merge pull request #158 from KyoriPowered/renovate/major-gradle-and-g…
Browse files Browse the repository at this point in the history
…ithub-actions

chore(deps): Update gradle and github actions (major)
  • Loading branch information
zml2008 authored Jan 7, 2024
2 parents ae031fc + 52df7b3 commit 5b3bae6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: "actions/checkout@v4"
- name: "setup python ${{ env.PYTHON_VERSION }}"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ env.PYTHON_VERSION }}"
cache: "pipenv"
Expand All @@ -27,7 +27,7 @@ jobs:
run: |
pipenv run make html
- name: "store output"
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: "docs-html"
path: "build/html/"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
run: "echo ${{ github.event.number }} > ./pr-num.txt"
- name: "pr number / publish"
if: "${{ always() }}"
uses: "actions/upload-artifact@v3"
uses: "actions/upload-artifact@v4"
with:
name: "pr-num"
path: "./pr-num.txt"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,16 +31,16 @@ jobs:

steps:
- name: "artifact / restore"
uses: "actions/download-artifact@v3"
uses: "actions/download-artifact@v4"
with:
name: "docs-html"
path: "build/html"
- name: "artifact / repackage"
uses: "actions/upload-pages-artifact@v2"
uses: "actions/upload-pages-artifact@v3"
with:
path: "build/html"
- name: "deploy / pages"
id: "deployment"
uses: "actions/deploy-pages@v2"
uses: "actions/deploy-pages@v4"


2 changes: 1 addition & 1 deletion .github/workflows/check-spelling.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:
- uses: "actions/checkout@v4"
- name: "setup python ${{ env.PYTHON_VERSION }}"
uses: "actions/setup-python@v4"
uses: "actions/setup-python@v5"
with:
python-version: "${{ env.PYTHON_VERSION }}"
cache: "pipenv"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ jobs:
steps:
- uses: "actions/checkout@v4" # for pages publishing
- name: "download PR"
uses: "dawidd6/action-download-artifact@v2"
uses: "dawidd6/action-download-artifact@v3"
with:
workflow: "${{ github.event.workflow_run.workflow_id }}"
run_id: "${{ github.event.workflow_run.id }}"
name: "pr-num"
path: "."
- name: "download dist artifact"
uses: "dawidd6/action-download-artifact@v2"
uses: "dawidd6/action-download-artifact@v3"
with:
workflow: "${{ github.event.workflow_run.workflow_id }}"
run_id: "${{ github.event.workflow_run.id }}"
Expand Down

0 comments on commit 5b3bae6

Please sign in to comment.