Skip to content
Closed
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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
SPARK_LOCAL_IP: localhost
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# In order to get diff files
with:
fetch-depth: 0
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
key: tpcds-${{ hashFiles('.github/workflows/benchmark.yml', 'sql/core/src/test/scala/org/apache/spark/sql/TPCDSSchema.scala') }}
- name: Checkout tpcds-kit repository
if: steps.cache-tpcds-sf-1.outputs.cache-hit != 'true'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: databricks/tpcds-kit
ref: 2a5078a782192ddb6efbcead8de9973d6ab4f069
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
SPARK_TPCDS_DATA: ${{ github.workspace }}/tpcds-sf-1
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# In order to get diff files
with:
fetch-depth: 0
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
}}
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
SPARK_LOCAL_IP: localhost
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# In order to fetch changed files
with:
fetch-depth: 0
Expand Down Expand Up @@ -286,7 +286,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# In order to fetch changed files
with:
fetch-depth: 0
Expand Down Expand Up @@ -349,7 +349,7 @@ jobs:
METASPACE_SIZE: 1g
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# In order to fetch changed files
with:
fetch-depth: 0
Expand Down Expand Up @@ -438,7 +438,7 @@ jobs:
SKIP_MIMA: true
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
# In order to fetch changed files
with:
fetch-depth: 0
Expand Down Expand Up @@ -508,7 +508,7 @@ jobs:
image: ${{ needs.precondition.outputs.image_url }}
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down Expand Up @@ -635,7 +635,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down Expand Up @@ -684,7 +684,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down Expand Up @@ -732,7 +732,7 @@ jobs:
SPARK_LOCAL_IP: localhost
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down Expand Up @@ -773,7 +773,7 @@ jobs:
key: tpcds-${{ hashFiles('.github/workflows/build_and_test.yml', 'sql/core/src/test/scala/org/apache/spark/sql/TPCDSSchema.scala') }}
- name: Checkout tpcds-kit repository
if: steps.cache-tpcds-sf-1.outputs.cache-hit != 'true'
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: databricks/tpcds-kit
ref: 2a5078a782192ddb6efbcead8de9973d6ab4f069
Expand Down Expand Up @@ -834,7 +834,7 @@ jobs:
SKIP_MIMA: true
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down Expand Up @@ -891,7 +891,7 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 0
repository: apache/spark
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_infra_images_cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
packages: write
steps:
- name: Checkout Spark repository
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- branch-3.1
steps:
- name: Checkout Spark repository
uses: actions/checkout@61b9e3751b92087fd0b06925ba6dd6314e06f089 # pin@master
uses: actions/checkout@v3
Copy link
Member Author

@Yikun Yikun Oct 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I also take a look on 00b87c9, I think pin SHA is only for 3rd party, but for actions/ I think tag is enough. BTW, the note is already outdate.

with:
ref: ${{ matrix.branch }}
- name: Cache Maven local repository
Expand Down