Skip to content

Commit 6ed026f

Browse files
authored
Merge pull request #242 from learningequality/dependabot/github_actions/github-b6046c53aa
Bump the github group with 4 updates
2 parents 0392cba + e632158 commit 6ed026f

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/build_apk.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,9 @@ jobs:
8989
run: |
9090
echo "Must specify only one reference for the tar file to build the APK with."
9191
exit 1
92-
- uses: actions/checkout@v4
92+
- uses: actions/checkout@v5
9393
if: ${{ !inputs.ref }}
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v5
9595
if: ${{ inputs.ref }}
9696
with:
9797
repository: learningequality/kolibri-installer-android
@@ -103,7 +103,7 @@ jobs:
103103
# or from another repository with workflow_call.
104104
run: echo "sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
105105
- name: Set up Python 3.9
106-
uses: actions/setup-python@v5
106+
uses: actions/setup-python@v6
107107
with:
108108
python-version: 3.9
109109
- name: Install Apt Dependencies
@@ -148,7 +148,7 @@ jobs:
148148
run: make get-tar tar=${{ inputs.tar-url }}
149149
- name: Download the tarfile from artifacts
150150
if: ${{ inputs.tar-file-name }}
151-
uses: actions/download-artifact@v4
151+
uses: actions/download-artifact@v5
152152
with:
153153
name: ${{ inputs.tar-file-name }}
154154
path: tar

.github/workflows/pr_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
- name: Get latest Kolibri release
2929
id: get_latest_kolibri_release
30-
uses: actions/github-script@v7
30+
uses: actions/github-script@v8
3131
with:
3232
result-encoding: string
3333
script: |

.github/workflows/pre-commit.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
if: ${{ needs.pre_job.outputs.should_skip != 'true' }}
2828
runs-on: ubuntu-latest
2929
steps:
30-
- uses: actions/checkout@v4
31-
- uses: actions/setup-python@v5
30+
- uses: actions/checkout@v5
31+
- uses: actions/setup-python@v6
3232
with:
3333
python-version: 3.9
3434
- uses: pre-commit/action@v3.0.1

.github/workflows/release_apk.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
env:
2929
SERVICE_ACCOUNT_JSON: '${{ secrets.KOLIBRI_ANDROID_PLAY_STORE_API_SERVICE_ACCOUNT_JSON }}'
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v5
3232
if: ${{ !inputs.ref }}
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v5
3434
if: ${{ inputs.ref }}
3535
with:
3636
repository: learningequality/kolibri-installer-android
3737
ref: ${{ inputs.ref }}
3838
- name: Set up Python 3.9
39-
uses: actions/setup-python@v5
39+
uses: actions/setup-python@v6
4040
with:
4141
python-version: 3.9
4242
- uses: actions/cache@v4

0 commit comments

Comments
 (0)