8000 EC3-1687 updating workflows by alexjoeyyong · Pull Request #504 · optimizely/android-sdk · GitHub
[go: up one dir, main page]

Skip to content

EC3-1687 updating workflows #504

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 22, 2025
Merged
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
EC3-1687 updating workflows
  • Loading branch information
alexjoeyyong authored Jan 21, 2025
commit cd251f48c9b2bbbd5ab4833bf4c4f9701cbb6faf
10 changes: 5 additions & 5 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
lint_markdown_files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -31,7 +31,7 @@ jobs:
if: ${{ startsWith(github.ref, 'refs/tags/') != true && github.event.inputs.SNAPSHOT != 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
# You should create a personal access token and store it in your repository
token: ${{ secrets.CI_USER_TOKEN }}
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
api-level: [21, 25, 26, 29]
steps:
- name: checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v1
with:
Expand All @@ -101,14 +101,14 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Gradle cache
uses: actions/cache@v2
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: gradle-${{ runner.os }}-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }}-${{ hashFiles('**/buildSrc/**/*.kt') }}
- name: AVD cache
uses: actions/cache@v2
uses: actions/cache@v4
id: avd-cache
with:
path: |
Expand Down
Loading
0