Skip to content

Commit 967c6db

Browse files
authored
Merge pull request #1756 from ClickHouse/update_actions_versions
[maintenance] updated actions/* versions to latest
2 parents 9e53b41 + 975a5e9 commit 967c6db

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ jobs:
3737
name: Static code analysis
3838
steps:
3939
- name: Check out Git repository
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
with:
4242
fetch-depth: 0
4343
- name: Check out head
44-
uses: actions/checkout@v3
44+
uses: actions/checkout@v4
4545
with:
4646
ref: ${{ github.event.pull_request.head.sha }}
4747
if: github.event_name == 'pull_request'
@@ -51,7 +51,7 @@ jobs:
5151
origin pull/${{ github.event.inputs.pr }}/head:the-pr && git checkout the-pr
5252
if: github.event.inputs.pr != ''
5353
- name: Install JDK and Maven
54-
uses: actions/setup-java@v3
54+
uses: actions/setup-java@v4
5555
with:
5656
distribution: "temurin"
5757
java-version: |
@@ -77,7 +77,7 @@ jobs:
7777
</toolchains>
7878
EOF
7979
- name: Cache SonarCloud packages
80-
uses: actions/cache@v2
80+
uses: actions/cache@v4
8181
with:
8282
path: ~/.sonar/cache
8383
key: ${{ runner.os }}-sonar

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -252,14 +252,14 @@ jobs:
252252
name: Java client (http) + CH ${{ matrix.clickhouse }}
253253
steps:
254254
- name: Check out repository
255-
uses: actions/checkout@v3
255+
uses: actions/checkout@v4
256256
- name: Check out PR
257257
run: |
258258
git fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 \
259259
origin pull/${{ github.event.inputs.pr }}/merge:merged-pr && git checkout merged-pr
260260
if: github.event.inputs.pr != ''
261261
- name: Install JDK 17 and Maven
262-
uses: actions/setup-java@v3
262+
uses: actions/setup-java@v4
263263
with:
264264
distribution: "temurin"
265265
java-version: |
@@ -293,7 +293,7 @@ jobs:
293293
run: |
294294
mvn --batch-mode --no-transfer-progress --projects clickhouse-http-client -DclickhouseVersion=${{ matrix.clickhouse }} -Dprotocol=http verify
295295
- name: Upload test results
296-
uses: actions/upload-artifact@v2
296+
uses: actions/upload-artifact@v4
297297
if: failure()
298298
with:
299299
name: result ${{ github.job }}
@@ -491,14 +491,14 @@ jobs:
491491
name: Client V2 + CH ${{ matrix.clickhouse }}
492492
steps:
493493
- name: Check out repository
494-
uses: actions/checkout@v3
494+
uses: actions/checkout@v4
495495
- name: Check out PR
496496
run: |
497497
git fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 \
498498
origin pull/${{ github.event.inputs.pr }}/merge:merged-pr && git checkout merged-pr
499499
if: github.event.inputs.pr != ''
500500
- name: Install JDK 17 and Maven
501-
uses: actions/setup-java@v3
501+
uses: actions/setup-java@v4
502502
with:
503503
distribution: "temurin"
504504
java-version: |
@@ -527,7 +527,7 @@ jobs:
527527
run: |
528528
mvn --also-make --batch-mode --no-transfer-progress --projects client-v2 -Dclient.tests.useNewImplementation=true -DclickhouseVersion=${{ matrix.clickhouse }} verify
529529
- name: Upload test results
530-
uses: actions/upload-artifact@v2
530+
uses: actions/upload-artifact@v4
531531
if: failure()
532532
with:
533533
name: result ${{ github.job }}

.github/workflows/nightly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
timeout-minutes: 20
2323
steps:
2424
- name: Check out Git repository
25-
uses: actions/checkout@v3
25+
uses: actions/checkout@v4
2626
with:
2727
ref: ${{ env.CHC_BRANCH }}
2828
- name: Check out PR
@@ -31,7 +31,7 @@ jobs:
3131
origin pull/${{ github.event.inputs.pr }}/merge:merged-pr && git checkout merged-pr
3232
if: github.event.inputs.pr != ''
3333
- name: Install JDK and Maven
34-
uses: actions/setup-java@v3
34+
uses: actions/setup-java@v4
3535
with:
3636
distribution: "temurin"
3737
java-version: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717

1818
steps:
1919
- name: Check out Git repository
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
- name: Install JDK and Maven
22-
uses: actions/setup-java@v3
22+
uses: actions/setup-java@v4
2323
with:
2424
distribution: 'temurin'
2525
java-version: |

0 commit comments

Comments
 (0)