From 5be549180ebb5cb9b63da1d16cb5039350191e94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 31 Oct 2025 00:01:47 +0000 Subject: [PATCH] Bump the github group across 1 directory with 4 updates Bumps the github group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/download-artifact](https://github.com/actions/download-artifact), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/github-script](https://github.com/actions/github-script). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/download-artifact` from 4 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4...v6) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](https://github.com/actions/github-script/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github ... Signed-off-by: dependabot[bot] --- .github/workflows/build_zip.yml | 8 ++++---- .github/workflows/pr_build.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_zip.yml b/.github/workflows/build_zip.yml index ba21eabdac..57a56c2b1a 100644 --- a/.github/workflows/build_zip.yml +++ b/.github/workflows/build_zip.yml @@ -37,9 +37,9 @@ jobs: run: | echo "Must specify only one reference for the deb file to build the image with." exit 1 - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ !inputs.ref }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 if: ${{ inputs.ref }} with: repository: learningequality/pi-gen @@ -56,7 +56,7 @@ jobs: run: make get-deb deb=${{ inputs.deb-url }} - name: Download the debfile from artifacts if: ${{ inputs.deb-file-name }} - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v6 with: name: ${{ inputs.deb-file-name }} path: dist @@ -73,7 +73,7 @@ jobs: - name: Get ZIP filename id: get-zip-filename run: echo "zip-file-name=$(ls deploy | grep .zip | cat)" >> $GITHUB_OUTPUT - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: ${{ steps.get-zip-filename.outputs.zip-file-name }} path: deploy/${{ steps.get-zip-filename.outputs.zip-file-name }} diff --git a/.github/workflows/pr_build.yml b/.github/workflows/pr_build.yml index 1e4247ac80..c86b238bad 100644 --- a/.github/workflows/pr_build.yml +++ b/.github/workflows/pr_build.yml @@ -27,7 +27,7 @@ jobs: steps: - name: Get latest Kolibri release id: get_latest_kolibri_release - uses: actions/github-script@v7 + uses: actions/github-script@v8 with: result-encoding: string script: |