From 52df7b3043bb6eca046e53fcf62cc657f8ba85f5 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 2 Jan 2024 19:12:13 +0000 Subject: [PATCH] chore(deps): Update gradle and github actions --- .github/workflows/build-artifact.yaml | 4 ++-- .github/workflows/build-pr.yaml | 2 +- .github/workflows/build.yaml | 6 +++--- .github/workflows/check-spelling.yaml | 2 +- .github/workflows/preview.yaml | 4 ++-- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-artifact.yaml b/.github/workflows/build-artifact.yaml index c94adb58..1432362b 100644 --- a/.github/workflows/build-artifact.yaml +++ b/.github/workflows/build-artifact.yaml @@ -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" @@ -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/" diff --git a/.github/workflows/build-pr.yaml b/.github/workflows/build-pr.yaml index 81eb7de4..1520372f 100644 --- a/.github/workflows/build-pr.yaml +++ b/.github/workflows/build-pr.yaml @@ -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" diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a2824bde..ba021a9e 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -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" diff --git a/.github/workflows/check-spelling.yaml b/.github/workflows/check-spelling.yaml index c271d541..b3644ee1 100644 --- a/.github/workflows/check-spelling.yaml +++ b/.github/workflows/check-spelling.yaml @@ -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" diff --git a/.github/workflows/preview.yaml b/.github/workflows/preview.yaml index 2bbccc99..26b2214f 100644 --- a/.github/workflows/preview.yaml +++ b/.github/workflows/preview.yaml @@ -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 }}"