Skip to content
Merged
Show file tree
Hide file tree
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
11 changes: 6 additions & 5 deletions .github/workflows/backstop-regression-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- ${{ github.base_ref }}
- ${{ github.head_ref }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
ref: ${{ matrix.ref }}

Expand All @@ -35,7 +35,7 @@ jobs:
current_ref: ${{ matrix.ref }}
base_ref: ${{ github.base_ref }}

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
cache: yarn
node-version: 16
Expand All @@ -46,7 +46,7 @@ jobs:

- if: ${{ env.backstop_verb == 'test' }}
name: Download baseline Backstop results from previous run
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: backstop-report
path: tests/backstop
Expand All @@ -58,13 +58,14 @@ jobs:
node scripts/make_backstop_json.js
npx backstop ${{ env.backstop_verb }} --config=build/backstop.json || true

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: backstop-report
path: tests/backstop
overwrite: true

- if: ${{ env.backstop_verb == 'test' }}
uses: EnricoMi/publish-unit-test-result-action@v1
uses: EnricoMi/publish-unit-test-result-action@v2
with:
fail_on: nothing
files: tests/backstop/ci_report/xunit.xml
2 changes: 1 addition & 1 deletion .github/workflows/link-to-backstop-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v5
- uses: actions/github-script@v7
with:
# This snippet is public-domain, adapted from
# https://github.com/oprypin/nightly.link/blob/master/.github/workflows/pr-comment.yml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: yarn
node-version: 16
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release-on-semver-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Pull main branch
run: |
git fetch origin $base_branch
Expand All @@ -30,11 +30,11 @@ jobs:
else
echo is_uptodate=false
fi
- uses: andymckay/cancel-action@0.2
- uses: andymckay/cancel-action@0.4
if: ${{ env.is_uptodate == 'false' }}

- name: Setup Node
uses: actions/setup-node@v2
uses: actions/setup-node@v4
with:
node-version: '14'
- name: Install dependencies
Expand All @@ -47,7 +47,7 @@ jobs:
(cd dist; tar --exclude package.json -clf - .) | \
(cd gh-pages; tar xpvf -)

- uses: peaceiris/actions-gh-pages@v3
- uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./gh-pages
Expand All @@ -61,7 +61,7 @@ jobs:
(cd frontend; tar xpvf -)

- name: Deploy to “dist/frontend” branch
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./frontend
Expand Down