Skip to content

Commit

Permalink
Merge pull request #31 from ut-issl/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
Update actions/checkout action to v4
  • Loading branch information
sksat authored Oct 5, 2023
2 parents d5e8b36 + 36c3251 commit 3171a2b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actionlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
actionlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: reviewdog/action-actionlint@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:

steps:
- name: checkout S2E core
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: s2e-core
repository: ut-issl/s2e-core
ref: '${{ env.S2E_CORE_VERSION }}'
fetch-depth: 1

- name: checkout S2E user
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: s2e-user

- name: checkout C2A core
if: contains(matrix.use_c2a, 'ON')
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: c2a-core
repository: ut-issl/c2a-core
Expand Down Expand Up @@ -114,21 +114,21 @@ jobs:

steps:
- name: checkout S2E core
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: s2e-core
repository: ut-issl/s2e-core
ref: '${{ env.S2E_CORE_VERSION }}'
fetch-depth: 1

- name: checkout S2E user
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: s2e-user

- name: checkout C2A core
if: contains(matrix.use_c2a, 'ON')
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: c2a-core
repository: ut-issl/c2a-core
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Run Labeler
uses: crazy-max/ghaction-github-labeler@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v3

- name: install
Expand Down

0 comments on commit 3171a2b

Please sign in to comment.