From 040a284c4abe63556cdd2cda0d0f9ddda575f079 Mon Sep 17 00:00:00 2001 From: Kouhei Yanagita Date: Wed, 8 Feb 2023 09:44:09 +0900 Subject: [PATCH 1/2] =?UTF-8?q?Node=2012=E3=81=AE=E8=AD=A6=E5=91=8A?= =?UTF-8?q?=E3=81=AB=E5=AF=BE=E5=BF=9C=E3=81=99=E3=82=8B=E3=81=9F=E3=82=81?= =?UTF-8?q?=E3=80=81actions/checkout=E3=82=92v3=E3=81=AB=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 122573ec1b..6a00401421 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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: @@ -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 @@ -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 From 229a17fe56fbaa3e32c5b25785fdcd9527ae6210 Mon Sep 17 00:00:00 2001 From: Kouhei Yanagita Date: Wed, 8 Feb 2023 09:44:32 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Node=2012=E3=81=AE=E8=AD=A6=E5=91=8A?= =?UTF-8?q?=E3=81=AB=E5=AF=BE=E5=BF=9C=E3=81=99=E3=82=8B=E3=81=9F=E3=82=81?= =?UTF-8?q?=E3=80=81actions/upload-artifact=E3=82=92v3=E3=81=AB=E6=9B=B4?= =?UTF-8?q?=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a00401421..fd71414ddd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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