Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build_zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/pr_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down