Skip to content

Commit f03a7b8

Browse files
chore: sync files (#469)
Signed-off-by: GitHub <noreply@github.com> Co-authored-by: kenji-miyake <kenji-miyake@users.noreply.github.com>
1 parent 1bab84e commit f03a7b8

9 files changed

+27
-27
lines changed

.github/workflows/build-and-test-differential-self-hosted.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
prevent-no-label-execution:
13-
uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@tier4/proposal
13+
uses: autowarefoundation/autoware-github-actions/.github/workflows/prevent-no-label-execution.yaml@v1
1414
with:
1515
label: ARM64
1616

@@ -26,23 +26,23 @@ jobs:
2626
fetch-depth: 0
2727

2828
- name: Remove exec_depend
29-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal
29+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
3030

3131
- name: Get modified packages
3232
id: get-modified-packages
33-
uses: autowarefoundation/autoware-github-actions/get-modified-packages@tier4/proposal
33+
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
3434

3535
- name: Build
3636
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
37-
uses: autowarefoundation/autoware-github-actions/colcon-build@tier4/proposal
37+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
3838
with:
3939
rosdistro: galactic
4040
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
4141
build-depends-repos: build_depends.repos
4242

4343
- name: Test
4444
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
45-
uses: autowarefoundation/autoware-github-actions/colcon-test@tier4/proposal
45+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
4646
with:
4747
rosdistro: galactic
4848
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}

.github/workflows/build-and-test-differential.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
fetch-depth: 0
1818

1919
- name: Remove exec_depend
20-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal
20+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
2121

2222
- name: Get modified packages
2323
id: get-modified-packages
24-
uses: autowarefoundation/autoware-github-actions/get-modified-packages@tier4/proposal
24+
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
2525

2626
- name: Build
2727
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
28-
uses: autowarefoundation/autoware-github-actions/colcon-build@tier4/proposal
28+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
2929
with:
3030
rosdistro: galactic
3131
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
@@ -34,7 +34,7 @@ jobs:
3434
- name: Test
3535
id: test
3636
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
37-
uses: autowarefoundation/autoware-github-actions/colcon-test@tier4/proposal
37+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
3838
with:
3939
rosdistro: galactic
4040
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}
@@ -59,15 +59,15 @@ jobs:
5959
fetch-depth: 0
6060

6161
- name: Remove exec_depend
62-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal
62+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
6363

6464
- name: Get modified packages
6565
id: get-modified-packages
66-
uses: autowarefoundation/autoware-github-actions/get-modified-packages@tier4/proposal
66+
uses: autowarefoundation/autoware-github-actions/get-modified-packages@v1
6767

6868
- name: Run clang-tidy
6969
if: ${{ steps.get-modified-packages.outputs.modified-packages != '' }}
70-
uses: autowarefoundation/autoware-github-actions/clang-tidy@tier4/proposal
70+
uses: autowarefoundation/autoware-github-actions/clang-tidy@v1
7171
with:
7272
rosdistro: galactic
7373
target-packages: ${{ steps.get-modified-packages.outputs.modified-packages }}

.github/workflows/build-and-test-self-hosted.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,23 @@ jobs:
1414
uses: actions/checkout@v3
1515

1616
- name: Remove exec_depend
17-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal
17+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
1818

1919
- name: Get self packages
2020
id: get-self-packages
21-
uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal
21+
uses: autowarefoundation/autoware-github-actions/get-self-packages@v1
2222

2323
- name: Build
2424
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
25-
uses: autowarefoundation/autoware-github-actions/colcon-build@tier4/proposal
25+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
2626
with:
2727
rosdistro: galactic
2828
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
2929
build-depends-repos: build_depends.repos
3030

3131
- name: Test
3232
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
33-
uses: autowarefoundation/autoware-github-actions/colcon-test@tier4/proposal
33+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
3434
with:
3535
rosdistro: galactic
3636
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}

.github/workflows/build-and-test.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616
uses: actions/checkout@v3
1717

1818
- name: Remove exec_depend
19-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal
19+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
2020

2121
- name: Get self packages
2222
id: get-self-packages
23-
uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal
23+
uses: autowarefoundation/autoware-github-actions/get-self-packages@v1
2424

2525
- name: Build
2626
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
27-
uses: autowarefoundation/autoware-github-actions/colcon-build@tier4/proposal
27+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
2828
with:
2929
rosdistro: galactic
3030
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}
@@ -33,7 +33,7 @@ jobs:
3333
- name: Test
3434
if: ${{ steps.get-self-packages.outputs.self-packages != '' }}
3535
id: test
36-
uses: autowarefoundation/autoware-github-actions/colcon-test@tier4/proposal
36+
uses: autowarefoundation/autoware-github-actions/colcon-test@v1
3737
with:
3838
rosdistro: galactic
3939
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}

.github/workflows/check-build-depends.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ jobs:
1717
uses: actions/checkout@v3
1818

1919
- name: Remove exec_depend
20-
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@tier4/proposal
20+
uses: autowarefoundation/autoware-github-actions/remove-exec-depend@v1
2121

2222
- name: Get self packages
2323
id: get-self-packages
24-
uses: autowarefoundation/autoware-github-actions/get-self-packages@tier4/proposal
24+
uses: autowarefoundation/autoware-github-actions/get-self-packages@v1
2525

2626
- name: Build
27-
uses: autowarefoundation/autoware-github-actions/colcon-build@tier4/proposal
27+
uses: autowarefoundation/autoware-github-actions/colcon-build@v1
2828
with:
2929
rosdistro: galactic
3030
target-packages: ${{ steps.get-self-packages.outputs.self-packages }}

.github/workflows/pre-commit-optional.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
uses: actions/checkout@v3
1212

1313
- name: Run pre-commit
14-
uses: autowarefoundation/autoware-github-actions/pre-commit@tier4/proposal
14+
uses: autowarefoundation/autoware-github-actions/pre-commit@v1
1515
with:
1616
pre-commit-config: .pre-commit-config-optional.yaml

.github/workflows/pre-commit.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
uses: actions/checkout@v3
1212

1313
- name: Run pre-commit
14-
uses: autowarefoundation/autoware-github-actions/pre-commit@tier4/proposal
14+
uses: autowarefoundation/autoware-github-actions/pre-commit@v1
1515
with:
1616
pre-commit-config: .pre-commit-config.yaml

.github/workflows/semantic-pull-request.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ on:
99

1010
jobs:
1111
semantic-pull-request:
12-
uses: autowarefoundation/autoware-github-actions/.github/workflows/semantic-pull-request.yaml@tier4/proposal
12+
uses: autowarefoundation/autoware-github-actions/.github/workflows/semantic-pull-request.yaml@v1

.github/workflows/spell-check-differential.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
uses: actions/checkout@v3
1212

1313
- name: Run spell-check
14-
uses: autowarefoundation/autoware-github-actions/spell-check@tier4/proposal
14+
uses: autowarefoundation/autoware-github-actions/spell-check@v1
1515
with:
1616
cspell-json-url: https://raw.githubusercontent.com/tier4/autoware-spell-check-dict/main/.cspell.json

0 commit comments

Comments
 (0)