Skip to content

Commit

Permalink
Merge pull request #19 from ry0y4n/master
Browse files Browse the repository at this point in the history
GitHub Actionsがうまく動作しなくなっていたので修正
  • Loading branch information
kawamataryo authored Jun 12, 2023
2 parents c5f0a33 + c8037e3 commit 1842abb
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ on:
jobs:
build:
name: build pdf and upload release
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
- run: npm install
- name: build pdf
run: npm run build:pdf
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
jobs:
build:
name: create issue
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: JasonEtco/create-an-issue@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 4 additions & 4 deletions .github/workflows/lint-text.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on: [push, pull_request]
jobs:
build:
name: lint text
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '16'
- run: npm install
- name: lint text
run: npm run lint
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"devDependencies": {
"husky": "^5.0.0-alpha.6",
"@textlint-ja/textlint-rule-no-insert-dropping-sa": "^1.0.1",
"md-to-pdf": "^3.1.1",
"md-to-pdf": "^5.2.4",
"textlint": "^11.6.3",
"textlint-filter-rule-comments": "^1.2.2",
"textlint-filter-rule-whitelist": "^2.0.0",
Expand Down

0 comments on commit 1842abb

Please sign in to comment.