Skip to content

Commit 871dce1

Browse files
committed
ci: Use tag version in GH Actions
1 parent f293038 commit 871dce1

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ jobs:
2121
os: [ubuntu-latest, macos-latest, windows-latest]
2222
steps:
2323
- name: Checkout the repo
24-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
24+
uses: actions/checkout@v4
2525
- name: Setup Java
26-
uses: actions/setup-java@3b6c050358614dd082e53cdbc55580431fc4e437
26+
uses: actions/setup-java@v4
2727
with:
2828
distribution: 'zulu'
2929
java-version: ${{ matrix.java }}
@@ -40,13 +40,13 @@ jobs:
4040
strategy:
4141
fail-fast: false
4242
matrix:
43-
java: [17, 23]
43+
java: [17, 24]
4444
os: [ubuntu-latest, macos-latest, windows-latest]
4545
steps:
4646
- name: Checkout the repo
47-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
47+
uses: actions/checkout@v4
4848
- name: Setup Java
49-
uses: actions/setup-java@3b6c050358614dd082e53cdbc55580431fc4e437
49+
uses: actions/setup-java@v4
5050
with:
5151
distribution: 'corretto'
5252
java-version: ${{ matrix.java }}
@@ -61,6 +61,6 @@ jobs:
6161
VONAGE_PRIVATE_KEY_PATH: src/test/resources/com/vonage/client/kt/application_key
6262
run: mvn -e --batch-mode clean verify -T 1C
6363
- name: Run Codecov
64-
uses: codecov/codecov-action@288befbd1044bd1756afb0bdae077549e0ddb31f
64+
uses: codecov/codecov-action@v5
6565
with:
6666
token: ${{ secrets.CODECOV_TOKEN }}

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout the repo
16-
uses: actions/checkout@85e6279cec87321a52edac9c87bce653a07cf6c2
16+
uses: actions/checkout@v4
1717
with:
1818
ref: ${{ github.event.release.target_commitish }}
1919
- name: Setup Java
20-
uses: actions/setup-java@3b6c050358614dd082e53cdbc55580431fc4e437
20+
uses: actions/setup-java@v4
2121
with:
2222
java-version: 21
2323
distribution: 'temurin'
@@ -38,10 +38,10 @@ jobs:
3838
name: Notify Release
3939
strategy:
4040
matrix:
41-
url: [SLACK_WEBHOOK_ASK_DEVREL_URL, SLACK_WEBHOOK_DEVREL_TOOLING_URL, SLACK_WEBHOOK_DEVREL_PRIVATE_URL, SLACK_WEBHOOK_COMMUNITY]
41+
url: [SLACK_WEBHOOK_ASK_DEVREL_URL, SLACK_WEBHOOK_DEVREL_TOOLING_URL, SLACK_WEBHOOK_DEVREL_PRIVATE_URL]
4242
steps:
4343
- name: Send to Slack channels
44-
uses: slackapi/slack-github-action@485a9d42d3a73031f12ec201c457e2162c45d02d
44+
uses: slackapi/slack-github-action@v2.0.0
4545
with:
4646
webhook: ${{ secrets[matrix.url] }}
4747
webhook-type: incoming-webhook

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
<dependency>
5656
<groupId>com.vonage</groupId>
5757
<artifactId>server-sdk</artifactId>
58-
<version>9.0.0</version>
58+
<version>9.1.0</version>
5959
</dependency>
6060
<dependency>
6161
<groupId>org.jetbrains.kotlin</groupId>

0 commit comments

Comments
 (0)