Skip to content

Commit 8846377

Browse files
cfmcgradyyaooqinn
authored andcommitted
[KYUUBI #1736] Bump up GA actions/checkout to latest (v2.3.5)
<!-- Thanks for sending a pull request! Here are some tips for you: 1. If this is your first time, please read our contributor guidelines: https://kyuubi.readthedocs.io/en/latest/community/contributions.html 2. If the PR is related to an issue in https://github.com/apache/incubator-kyuubi/issues, add '[KYUUBI #XXXX]' in your PR title, e.g., '[KYUUBI #XXXX] Your PR title ...'. 3. If the PR is unfinished, add '[WIP]' in your PR title, e.g., '[WIP][KYUUBI #XXXX] Your PR title ...'. --> ### _Why are the changes needed?_ <!-- Please clarify why the changes are needed. For instance, 1. If you add a feature, you can talk about the use case of it. 2. If you fix a bug, you can clarify why it is a bug. --> Fix Github Action, see: actions/checkout#672 (comment) ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [ ] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/latest/develop_tools/testing.html#running-tests) locally before make a pull request Closes #1736 from cfmcgrady/fix-ga. Closes #1736 9a6216c [Fu Chen] bump up GA actions/checkout to latest (v2.3.5) Authored-by: Fu Chen <cfmcgrady@gmail.com> Signed-off-by: Kent Yao <yao@apache.org>
1 parent 60ea992 commit 8846377

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

.github/workflows/docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
cancel-in-progress: true
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v2
18+
uses: actions/checkout@v2.3.5
1919
- name: Login to Docker Hub
2020
uses: docker/login-action@v1
2121
with:

.github/workflows/license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: License
3232
runs-on: ubuntu-20.04
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v2.3.5
3535
- name: Setup JDK 8
3636
uses: actions/setup-java@v2
3737
with:

.github/workflows/master.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
env:
4545
SPARK_LOCAL_IP: localhost
4646
steps:
47-
- uses: actions/checkout@v2
47+
- uses: actions/checkout@v2.3.5
4848
- name: Setup JDK ${{ matrix.java }}
4949
uses: actions/setup-java@v2
5050
with:
@@ -100,7 +100,7 @@ jobs:
100100
env:
101101
SPARK_LOCAL_IP: localhost
102102
steps:
103-
- uses: actions/checkout@v2
103+
- uses: actions/checkout@v2.3.5
104104
- name: Setup JDK 8
105105
uses: actions/setup-java@v2
106106
with:
@@ -143,7 +143,7 @@ jobs:
143143
runs-on: ubuntu-20.04
144144
steps:
145145
- name: Checkout
146-
uses: actions/checkout@v2
146+
uses: actions/checkout@v2.3.5
147147
# https://github.com/docker/build-push-action
148148
- name: Set up Docker Buildx
149149
uses: docker/setup-buildx-action@v1

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
env:
1616
SPARK_LOCAL_IP: localhost
1717
steps:
18-
- uses: actions/checkout@v2
18+
- uses: actions/checkout@v2.3.5
1919
- name: Setup JDK 8
2020
uses: actions/setup-java@v2
2121
with:

.github/workflows/publish-snapshot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- branch-1.3
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@master
19+
uses: actions/checkout@2.3.5
2020
with:
2121
ref: ${{ matrix.branch }}
2222
- name: Cache Maven local repository

.github/workflows/style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
name: Style and Dep check
3232
runs-on: ubuntu-20.04
3333
steps:
34-
- uses: actions/checkout@v2
34+
- uses: actions/checkout@v2.3.5
3535
- name: Setup JDK 8
3636
uses: actions/setup-java@v2
3737
with:

0 commit comments

Comments
 (0)