Skip to content

Commit

Permalink
Merge pull request #21 from cybozu/renovate/actions-checkout-4.x
Browse files Browse the repository at this point in the history
chore(deps): update actions/checkout action to v4
  • Loading branch information
korosuke613 authored Apr 21, 2024
2 parents 00b64d5 + fde2d35 commit 4e7dd3c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dry-run-renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
dry-run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate.json5
6 changes: 3 additions & 3 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
tagging-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
git tag ${{ inputs.version }}
git push --tags origin ${{ inputs.version }}
Expand All @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.isMajorVersion }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
MAJOR_VERSION=$(echo ${{ inputs.version }} | awk -F'.' '{print $1}')
echo $MAJOR_VERSION
Expand All @@ -50,6 +50,6 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
gh release create ${{ inputs.version }} --generate-notes
12 changes: 6 additions & 6 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
normal:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate-test-data.json5

no-cache:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate-test-data.json5
Expand All @@ -29,7 +29,7 @@ jobs:
log-level:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate-test-data.json5
Expand All @@ -38,7 +38,7 @@ jobs:
log-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate-test-data.json5
Expand All @@ -47,7 +47,7 @@ jobs:
save-log:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate-test-data.json5
Expand All @@ -56,7 +56,7 @@ jobs:
detail-summary:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./
with:
config-file: renovate-test-data.json5
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pull-requests: read # required by renovate, because renovate to read pull request.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: cybozu/renovate-dry-run-action@v1
with:
config-file: renovate.json
Expand Down

0 comments on commit 4e7dd3c

Please sign in to comment.