Skip to content

Commit 0c583fb

Browse files
committed
Merge branch 'main' of github.com:intel-isl/Open3D into omp2tbb
2 parents 068bdcf + a4a173e commit 0c583fb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+1176
-416
lines changed

.github/workflows/clean-gcloud-profiles.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ jobs:
3636
fail-fast: false
3737
steps:
3838
- name: GCloud CLI auth
39-
uses: 'google-github-actions/auth@v1'
39+
uses: 'google-github-actions/auth@v2'
4040
with:
4141
project_id: ${{ secrets.GCE_PROJECT }}
4242
credentials_json: '${{ secrets.GCE_SA_KEY_GPU_CI }}'
4343
- name: GCloud CLI setup
44-
uses: google-github-actions/setup-gcloud@v1
44+
uses: google-github-actions/setup-gcloud@v2
4545
with:
4646
version: ${{ env.GCE_CLI_GHA_VERSION }}
4747
project_id: ${{ secrets.GCE_PROJECT }}

.github/workflows/documentation.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,21 +29,21 @@ jobs:
2929
DEVELOPER_BUILD: ${{ github.event.inputs.developer_build || 'ON' }}
3030
steps:
3131
- name: Checkout Open3D source code
32-
uses: actions/checkout@v3
32+
uses: actions/checkout@v4
3333

3434
- name: Maximize build space
3535
run: |
3636
source util/ci_utils.sh
3737
maximize_ubuntu_github_actions_build_space
3838
3939
- name: Checkout Open3D-ML source code
40-
uses: actions/checkout@v3
40+
uses: actions/checkout@v4
4141
with:
4242
repository: isl-org/Open3D-ML
4343
path: ${{ env.OPEN3D_ML_ROOT }}
4444

4545
- name: Setup cache
46-
uses: actions/cache@v3
46+
uses: actions/cache@v4
4747
with:
4848
# Ref: https://github.com/apache/incubator-mxnet/pull/18459/files
4949
path: ~/.ccache
@@ -56,7 +56,7 @@ jobs:
5656
restore-keys: |
5757
${{ runner.os }}-ccache
5858
- name: Set up Python version
59-
uses: actions/setup-python@v4
59+
uses: actions/setup-python@v5
6060
with:
6161
python-version: '3.8'
6262

@@ -81,21 +81,21 @@ jobs:
8181
ccache -s
8282
8383
- name: Upload docs
84-
uses: actions/upload-artifact@v3
84+
uses: actions/upload-artifact@v4
8585
with:
8686
name: open3d_docs
8787
path: docs/_out/html
8888
if-no-files-found: error
8989

9090
- name: GCloud CLI auth
9191
if: ${{ github.ref == 'refs/heads/main' }}
92-
uses: 'google-github-actions/auth@v1'
92+
uses: 'google-github-actions/auth@v2'
9393
with:
9494
project_id: ${{ secrets.GCE_PROJECT }}
9595
credentials_json: '${{ secrets.GCE_SA_KEY_GPU_CI }}'
9696
- name: GCloud CLI setup
9797
if: ${{ github.ref == 'refs/heads/main' }}
98-
uses: google-github-actions/setup-gcloud@v1
98+
uses: google-github-actions/setup-gcloud@v2
9999
with:
100100
version: ${{ env.GCE_CLI_GHA_VERSION }}
101101
project_id: ${{ secrets.GCE_PROJECT }}

0 commit comments

Comments
 (0)