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
2 changes: 1 addition & 1 deletion .github/actions/poetry-install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ runs:
shell: bash
run: echo "version=$(python -c 'import platform; print(platform.python_version())')" >> "$GITHUB_OUTPUT"
- name: Define a cache for the virtual environment based on the dependencies lock file
uses: actions/cache@v5
uses: actions/cache@v6
id: cache-python-deps
with:
path: ./.venv
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/android-emulator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:

- name: ♻️ Restore Cache Android SDK
id: cache-android-sdk
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: |
${{ env.ANDROID_HOME }}/system-images
Expand All @@ -103,22 +103,22 @@ jobs:

- name: ♻️ Restore Cache Android AVD
id: cache-avd
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: ${{ env.ANDROID_AVD_HOME }}
key: android-avd-${{ inputs.api-version }}

- name: ♻️ Restore Cache Appium Dependencies
id: cache-appium
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: TestsAutomation/node_modules
key: appium-node-modules-${{ hashFiles('TestsAutomation/package-lock.json') }}
restore-keys: appium-node-modules-

- name: ♻️ Restore Cache Command Line Tools
id: cache-cmdline-tools
uses: actions/cache/restore@v5
uses: actions/cache/restore@v6
with:
path: ${{ env.ANDROID_HOME }}/cmdline-tools/latest
key: cmdline-tools-14742923
Expand Down Expand Up @@ -255,7 +255,7 @@ jobs:

- name: ♻️ Save Cache Android SDK
if: steps.cache-android-sdk.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: |
${{ env.ANDROID_HOME }}/system-images
Expand All @@ -267,21 +267,21 @@ jobs:

- name: ♻️ Save Cache Android AVD
if: steps.cache-avd.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ env.ANDROID_AVD_HOME }}
key: android-avd-${{ inputs.api-version }}

- name: ♻️ Save Cache Command Line Tools
if: steps.cache-cmdline-tools.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: ${{ env.ANDROID_HOME }}/cmdline-tools/latest
key: cmdline-tools-14742923

- name: ♻️ Save Appium Cache
if: steps.cache-appium.outputs.cache-hit != 'true'
uses: actions/cache/save@v5
uses: actions/cache/save@v6
with:
path: TestsAutomation/node_modules
key: appium-node-modules-${{ hashFiles('TestsAutomation/package-lock.json') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-apk-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -258,13 +258,13 @@ jobs:
echo "ENVIRONMENT=${{ inputs.environment }}" >> .env

- name: Cache Gradle Wrapper
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.gradle/wrapper
key: ${{ runner.os }}-gradle-wrapper

- name: Cache Gradle Dependencies
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-caches
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/structuretest-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
docker tag ${{ inputs.image_url }} ${{ inputs.image_name }}:latest

- name: Cache Container Structure Test binary
uses: actions/cache@v4
uses: actions/cache@v6
id: cache
with:
path: .bin/container-structure-test
Expand Down
Loading