Skip to content

Commit

Permalink
ci: bump actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
akirakw committed Feb 7, 2024
1 parent f4de31c commit cef9026
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
24 changes: 12 additions & 12 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ runs:

steps:
- name: Checkout_Takatori
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/takatori
path: ${{ inputs.path }}/takatori
ref: master

- name: Checkout_Yugawara
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/yugawara
Expand All @@ -33,7 +33,7 @@ runs:
submodules: true

- name: Checkout_Shakujo
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/shakujo
Expand All @@ -42,47 +42,47 @@ runs:
submodules: recursive

- name: Checkout_Mizugaki
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/mizugaki
path: ${{ inputs.path }}/mizugaki
ref: master

- name: Checkout_Limestone
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/limestone
path: ${{ inputs.path }}/limestone
ref: master

- name: Checkout_Yakushima
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/yakushima
path: ${{ inputs.path }}/yakushima
ref: master

- name: Checkout_Shirakami
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/shirakami
path: ${{ inputs.path }}/shirakami
ref: master

- name: Checkout_Sharksfin
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/sharksfin
path: ${{ inputs.path }}/sharksfin
ref: master

- name: Checkout_Tateyama
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/tateyama
Expand All @@ -91,15 +91,15 @@ runs:
submodules: true

- name: Checkout_Jogasaki
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/jogasaki
path: ${{ inputs.path }}/jogasaki
ref: master

- name: Checkout_Metadata_Manager
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/metadata-manager
Expand All @@ -108,7 +108,7 @@ runs:
submodules: true

- name: Checkout_Message_Manager
uses: actions/checkout@v3
uses: actions/checkout@v4
if: ${{ inputs.checkout == 'true' }}
with:
repository: project-tsurugi/message-manager
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true

Expand Down

0 comments on commit cef9026

Please sign in to comment.