Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump actions/checkout v4 in README #64

Merged
merged 1 commit into from
Sep 6, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,20 +40,20 @@ demo: https://github.com/reviewdog/action-depup/pull/4
```yaml
inputs:
github_token:
description: 'GITHUB_TOKEN to get latest version with GitHub Release API'
default: '${{ github.token }}'
description: "GITHUB_TOKEN to get latest version with GitHub Release API"
default: "${{ github.token }}"
file:
description: 'target file'
description: "target file"
required: true
version_name:
description: 'target version name. e.g. REVIEWDOG_VERSION'
description: "target version name. e.g. REVIEWDOG_VERSION"
required: true
repo:
description: 'target GitHub repository. e.g. reviewdog/reviewdog'
description: "target GitHub repository. e.g. reviewdog/reviewdog"
required: true
tag:
description: 'Check tags instead of releases.'
default: 'false'
description: "Check tags instead of releases."
default: "false"
required: false
```

Expand All @@ -65,14 +65,14 @@ inputs:
name: depup
on:
schedule:
- cron: '14 14 * * *'
- cron: "14 14 * * *"
workflow_dispatch:

jobs:
reviewdog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: reviewdog/action-depup@v1
id: depup
Expand Down Expand Up @@ -102,14 +102,14 @@ If you want to create a PR after, you can use `reviewdog/action-depup/with-pr@v1
name: depup
on:
schedule:
- cron: '14 14 * * *'
- cron: "14 14 * * *"
workflow_dispatch:

jobs:
reviewdog:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- uses: reviewdog/action-depup/with-pr@v1
with:
file: testdata/testfile
Expand Down