Skip to content

Commit 596ccf9

Browse files
authored
update workflow links (#1363)
1 parent 48f2382 commit 596ccf9

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/build.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ concurrency:
2828
jobs:
2929
cpp-build:
3030
secrets: inherit
31-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
31+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
3232
with:
3333
build_type: ${{ inputs.build_type || 'branch' }}
3434
branch: ${{ inputs.branch }}
@@ -37,7 +37,7 @@ jobs:
3737
python-build:
3838
needs: [cpp-build]
3939
secrets: inherit
40-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
40+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
4141
with:
4242
build_type: ${{ inputs.build_type || 'branch' }}
4343
branch: ${{ inputs.branch }}
@@ -46,7 +46,7 @@ jobs:
4646
upload-conda:
4747
needs: [cpp-build, python-build]
4848
secrets: inherit
49-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
49+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
5050
with:
5151
build_type: ${{ inputs.build_type || 'branch' }}
5252
branch: ${{ inputs.branch }}
@@ -56,7 +56,7 @@ jobs:
5656
if: github.ref_type == 'branch'
5757
needs: python-build
5858
secrets: inherit
59-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
59+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
6060
with:
6161
build_type: ${{ inputs.build_type || 'branch' }}
6262
branch: ${{ inputs.branch }}
@@ -68,7 +68,7 @@ jobs:
6868
run_script: "ci/build_docs.sh"
6969
wheel-build:
7070
secrets: inherit
71-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
71+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
7272
with:
7373
build_type: ${{ inputs.build_type || 'branch' }}
7474
branch: ${{ inputs.branch }}
@@ -78,7 +78,7 @@ jobs:
7878
wheel-publish:
7979
needs: wheel-build
8080
secrets: inherit
81-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
81+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
8282
with:
8383
build_type: ${{ inputs.build_type || 'branch' }}
8484
branch: ${{ inputs.branch }}

.github/workflows/pr.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,40 @@ jobs:
2222
- wheel-tests
2323
- devcontainer
2424
secrets: inherit
25-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
25+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2626
checks:
2727
secrets: inherit
28-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
28+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2929
with:
3030
enable_check_generated_files: false
3131
conda-cpp-build:
3232
needs: checks
3333
secrets: inherit
34-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
34+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
3535
with:
3636
build_type: pull-request
3737
conda-cpp-tests:
3838
needs: conda-cpp-build
3939
secrets: inherit
40-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
40+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
4141
with:
4242
build_type: pull-request
4343
conda-python-build:
4444
needs: conda-cpp-build
4545
secrets: inherit
46-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
46+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
4747
with:
4848
build_type: pull-request
4949
conda-python-tests:
5050
needs: conda-python-build
5151
secrets: inherit
52-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
52+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
5353
with:
5454
build_type: pull-request
5555
docs-build:
5656
needs: conda-python-build
5757
secrets: inherit
58-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
58+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
5959
with:
6060
build_type: pull-request
6161
node_type: "gpu-v100-latest-1"
@@ -65,20 +65,20 @@ jobs:
6565
wheel-build:
6666
needs: checks
6767
secrets: inherit
68-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
68+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
6969
with:
7070
build_type: pull-request
7171
script: ci/build_wheel.sh
7272
wheel-tests:
7373
needs: wheel-build
7474
secrets: inherit
75-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
75+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
7676
with:
7777
build_type: pull-request
7878
script: ci/test_wheel.sh
7979
devcontainer:
8080
secrets: inherit
81-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
81+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
8282
with:
8383
build_command: |
8484
sccache -z;

.github/workflows/test.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,23 @@ on:
1616
jobs:
1717
cpp-tests:
1818
secrets: inherit
19-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
19+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2020
with:
2121
build_type: nightly
2222
branch: ${{ inputs.branch }}
2323
date: ${{ inputs.date }}
2424
sha: ${{ inputs.sha }}
2525
python-tests:
2626
secrets: inherit
27-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
27+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
2828
with:
2929
build_type: nightly
3030
branch: ${{ inputs.branch }}
3131
date: ${{ inputs.date }}
3232
sha: ${{ inputs.sha }}
3333
wheel-tests:
3434
secrets: inherit
35-
uses: rapidsai/shared-action-workflows/.github/workflows/[email protected]
35+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
3636
with:
3737
build_type: nightly
3838
branch: ${{ inputs.branch }}

ci/release/update-version.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ sed_runner 's/'"release =.*"'/'"release = \"${NEXT_FULL_TAG}\""'/g' python/docs/
5555

5656
# CI files
5757
for FILE in .github/workflows/*.yaml; do
58-
sed_runner "/shared-action-workflows/ s/@.*/@branch-${NEXT_SHORT_TAG}/g" "${FILE}"
58+
sed_runner "/shared-workflows/ s/@.*/@branch-${NEXT_SHORT_TAG}/g" "${FILE}"
5959
done
6060
sed_runner "s/RAPIDS_VERSION_NUMBER=\".*/RAPIDS_VERSION_NUMBER=\"${NEXT_SHORT_TAG}\"/g" ci/build_docs.sh
6161

0 commit comments

Comments
 (0)