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: |