Skip to content

Commit

Permalink
chore: dependencies updated (#283)
Browse files Browse the repository at this point in the history
  • Loading branch information
kikoso authored Nov 6, 2024
1 parent b29c0b0 commit c11c20e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout android-maps-ktx
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4.2.1
with:
java-version: '21'
distribution: 'temurin'
Expand All @@ -52,7 +52,7 @@ jobs:
# Commit changes and create a PR
- name: PR Changes
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v7
with:
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
commit-message: 'docs: Update docs'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4.2.1
with:
java-version: '21'
distribution: 'temurin'
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.SYNCED_GITHUB_TOKEN_REPO }}
- uses: gradle/wrapper-validation[email protected]
- uses: gradle/actions/wrapper-validation@v4
- name: Create .gpg key
run: |
echo $GPG_KEY_ARMOR | base64 --decode > ./release.asc
Expand All @@ -51,12 +51,12 @@ jobs:
SONATYPE_TOKEN_PASSWORD: ${{ secrets.SONATYPE_TOKEN_PASSWORD }}
SONATYPE_TOKEN_USERNAME: ${{ secrets.SONATYPE_TOKEN }}

- uses: actions/setup-node@v2
- uses: actions/setup-node@v4
with:
node-version: '14'

- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3.4.1
uses: cycjimmy/semantic-release-action@v4.1.1
with:
extra_plugins: |
"@semantic-release/[email protected]"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ jobs:
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout Repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Gradle Wrapper Validation
uses: gradle/wrapper-validation[email protected]
uses: gradle/actions/wrapper-validation@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4.2.1
with:
java-version: '21'
distribution: 'temurin'
Expand Down
14 changes: 7 additions & 7 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[versions]
androidCompileSdk = "34"
androidCompileSdk = "35"
androidMapsSdk = "19.0.0"
androidMapsUtils = "3.8.2"
androidMinSdk = "21"
androidTargetSdk = "34"
androidTargetSdk = "35"
androidxAppcompat = "1.7.0"
androidxCoreKtx = "1.13.1"
androidxJunit = "1.1.5"
androidxTest = "1.5.0"
androidxCoreKtx = "1.15.0"
androidxJunit = "1.2.1"
androidxTest = "1.6.1"
dokkaGradlePlugin = "1.9.20"
gradle = "8.4.2"
jacocoAndroid = "0.2.1"
junit = "4.13.2"
kotlin = "2.0.20"
kotlin = "2.0.21"
kotlinxCoroutines = "1.9.0"
lifecycleRuntimeKtx = "2.8.6"
lifecycleRuntimeKtx = "2.8.7"
mockito = "5.14.2"
kotlinGradlePlugin = "1.9.20"
mockitoInline = "5.2.0"
Expand Down

0 comments on commit c11c20e

Please sign in to comment.