Skip to content

Commit bb50d83

Browse files
Merge pull request #62 from cluster-apps-on-docker/feature/ci-fix
fixed checkout action version
2 parents 46676dd + 227ca33 commit bb50d83

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/master.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
DOCKERHUB_PWD: ${{ secrets.DOCKERHUB_PWD }}
1515
steps:
1616
- name: Checkout Code
17-
uses: actions/checkout@master
17+
uses: actions/checkout@v2
1818
- name: Build Spark v3.0.0 (latest)
1919
uses: ./.github/actions/build-spark
2020
with:
@@ -48,7 +48,7 @@ jobs:
4848
DOCKERHUB_PWD: ${{ secrets.DOCKERHUB_PWD }}
4949
steps:
5050
- name: Checkout Code
51-
uses: actions/checkout@master
51+
uses: actions/checkout@v2
5252
- name: Build JupyterLab v3.0.0 + Spark v3.0.0 (latest)
5353
uses: ./.github/actions/build-jupyterlab
5454
with:

.github/workflows/staging.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
DOCKERHUB_PWD: ${{ secrets.DOCKERHUB_PWD }}
1313
steps:
1414
- name: Checkout Code
15-
uses: actions/checkout@staging
15+
uses: actions/checkout@v2
1616
- name: Build Spark v3.0.0 (latest)
1717
uses: ./.github/actions/build-spark
1818
with:
@@ -46,7 +46,7 @@ jobs:
4646
DOCKERHUB_PWD: ${{ secrets.DOCKERHUB_PWD }}
4747
steps:
4848
- name: Checkout Code
49-
uses: actions/checkout@staging
49+
uses: actions/checkout@v2
5050
- name: Build JupyterLab v3.0.0 + Spark v3.0.0 (latest)
5151
uses: ./.github/actions/build-jupyterlab
5252
with:

0 commit comments

Comments
 (0)