Skip to content

Commit

Permalink
Merge pull request #2790 from kyanagi/fix-node-12-deprecated-warning
Browse files Browse the repository at this point in the history
GitHub ActionsでのNode.js 12の警告への対応
  • Loading branch information
znz committed Feb 8, 2023
2 parents 484baa8 + 229a17f commit 3752611
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand All @@ -50,7 +50,7 @@ jobs:
ls -Name "*.*" | foreach {
tar acf "../artifact/${_}.tar.xz" $_
}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: statichtml-${{ matrix.os }}-${{ matrix.ruby }}
path: /tmp/artifact/*.*.tar.xz
Expand All @@ -59,7 +59,7 @@ jobs:
run: |
cd /tmp
mv -v html html.pr
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.base.sha }}
- name: Install dependencies
Expand All @@ -72,7 +72,7 @@ jobs:
mv -v html html.base
git diff --no-index html.base html.pr --stat || true
git diff --no-index html.base html.pr --output artifact/html.diff || true
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: diff-${{ matrix.os }}-${{ matrix.ruby }}
path: /tmp/artifact/html.diff
Expand All @@ -81,7 +81,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install misspell
run: 'curl -L https://git.io/misspell | bash'
- name: Run misspell
Expand Down

0 comments on commit 3752611

Please sign in to comment.