diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2022-08-25 13:44:22 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2022-08-25 13:44:22 +0200 |
commit | ef28da8006814d49baead76feb2d2f9d06f0efea (patch) | |
tree | cfccc921a43a53bf2eaf2eab9fefd388b3226af9 /.github/workflows/android_builds.yml | |
parent | c7eb423eeb5455419bb96fc1ed8e8e121c2a619a (diff) |
CI: Bump various GitHub actions to latest versions
actions/cache@v3
actions/checkout@v3
actions/upload-artifact@v3
actions/setup-dotnet@v2
actions/setup-java@v3
actions/setup-python@v4
mymindstorm/setup-emsdk@v11
Also reset cache keys as we're going to cleanup all caches.
Diffstat (limited to '.github/workflows/android_builds.yml')
-rw-r--r-- | .github/workflows/android_builds.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/android_builds.yml b/.github/workflows/android_builds.yml index 10a0301ea8..4f54f6629e 100644 --- a/.github/workflows/android_builds.yml +++ b/.github/workflows/android_builds.yml @@ -17,7 +17,7 @@ jobs: name: Template (target=release, tools=no) steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 # Azure repositories are not reliable, we need to prevent azure giving us packages. - name: Make apt sources.list use the default Ubuntu repositories @@ -27,8 +27,9 @@ jobs: sudo apt-get update - name: Set up Java 11 - uses: actions/setup-java@v1 + uses: actions/setup-java@v3 with: + distribution: temurin java-version: 11 - name: Setup Godot build cache |