diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d8a3a0d406a..70843a51f4c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -31,4 +31,5 @@ jobs: jekyll_src: './' # Default is root directory jekyll_cfg: '_config.yml' # Default is _config.yml jekyll_baseurl: '' # Default is according to _config.yml + bundler_ver: '~>2.4.0' # Default is latest bundler version cname: 'jser.info' # Default is to not use a cname diff --git a/.github/workflows/textlint.yml b/.github/workflows/textlint.yml index 5eaaeefd0dc..b6bae25684d 100644 --- a/.github/workflows/textlint.yml +++ b/.github/workflows/textlint.yml @@ -11,11 +11,11 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 18 - name: Install run: yarn install - name: textlint reviewdog diff --git a/.github/workflows/update-draft-pr.yml b/.github/workflows/update-draft-pr.yml index 103f28c25f5..b32647cbf29 100644 --- a/.github/workflows/update-draft-pr.yml +++ b/.github/workflows/update-draft-pr.yml @@ -14,11 +14,11 @@ jobs: if: github.event_name == 'pull_request' && (github.event.pull_request.author_association == 'MEMBER' || github.event.pull_request.author_association == 'OWNER' || github.event.pull_request.author_association == 'COLLABORATOR') steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Node.js - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: 14.x + node-version: 18 - name: Install run: yarn install working-directory: actions/update-draft-pr