Skip to content
Closed
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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
echo "AWS_LC_SYS_PREBUILT_NASM=1" >> "$GITHUB_ENV"

- name: Cache Gradle dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand All @@ -100,7 +100,7 @@ jobs:
run: ./gradlew app:assembleDebug

- name: Upload Debug APK artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: app-debug-apks-${{ github.run_id }}
path: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
echo "Resolved release tag: $TAG_NAME"

- name: Checkout code at tag
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
ref: refs/tags/${{ steps.version.outputs.tag }}
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
echo "AWS_LC_SYS_PREBUILT_NASM=1" >> "$GITHUB_ENV"

- name: Cache Gradle dependencies
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.gradle/caches
Expand Down Expand Up @@ -350,7 +350,7 @@ jobs:
echo "Artifacts filename suffix: '${SIGNED_SUFFIX}' (empty=signed, -unsigned=unsigned)"

- name: Upload release package artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: app-release-package-${{ steps.version.outputs.tag }}
path: output/*
Expand Down
Loading