Skip to content
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

[INLONG-10138][CI] Bump actions/checkout@v3, actions/setup-java@v3, actions/cache@v3 to v4 #10139

Merged
merged 1 commit into from
May 7, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Release space size
- name: Remove unnecessary packages
Expand All @@ -73,13 +73,13 @@ jobs:
df -h

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository/*/*/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_chart_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- 'kindest/node:v1.23.4'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci_check_format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_check_license.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check license header
uses: apache/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_check_pr_title.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# The correct title should start with [WIP] or [INLONG-xxx],
# where xxx is the issue number, e.g. [INLONG-123].
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Release space size
- name: Remove unnecessary packages
Expand All @@ -67,7 +67,7 @@ jobs:
df -h

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt
Expand All @@ -85,7 +85,7 @@ jobs:
uses: docker/setup-buildx-action@v2

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository/*/*/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_ut.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,16 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_ut_flink13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Release space size
- name: Remove unnecessary packages
Expand All @@ -52,13 +52,13 @@ jobs:
df -h

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository/*/*/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci_ut_flink15.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Release space size
- name: Remove unnecessary packages
Expand All @@ -52,13 +52,13 @@ jobs:
df -h

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt

- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository/*/*/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

# Release space size
- name: Remove unnecessary packages
Expand All @@ -51,7 +51,7 @@ jobs:

# Set up jdk
- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 8
distribution: adopt
Expand All @@ -64,7 +64,7 @@ jobs:

# Build project
- name: Cache Maven packages
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.m2/repository/*/*/*
Expand Down
Loading