[actions] update some actions deps

Jordan Harband 2022-10-16 17:51:14 -07:00
parent fe6268c021
commit df84c77a81
No known key found for this signature in database
GPG Key ID: 9F6A681E35EF8B56
6 changed files with 12 additions and 12 deletions

View File

@ -53,7 +53,7 @@ jobs:
iojs.org:443 iojs.org:443
nodejs.org:443 nodejs.org:443
registry.npmjs.org:443 registry.npmjs.org:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: ljharb/actions/node/install@main - uses: ljharb/actions/node/install@main
name: 'nvm install-latest-npm' name: 'nvm install-latest-npm'
with: with:

View File

@ -14,7 +14,7 @@ jobs:
github.com:443 github.com:443
nodejs.org:443 nodejs.org:443
registry.npmjs.org:443 registry.npmjs.org:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: ljharb/actions/node/install@main - uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install' name: 'nvm install ${{ matrix.node-version }} && npm install'
with: with:
@ -34,7 +34,7 @@ jobs:
pkg-containers.githubusercontent.com:443 pkg-containers.githubusercontent.com:443
nodejs.org:443 nodejs.org:443
registry.npmjs.org:443 registry.npmjs.org:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: ljharb/actions/node/install@main - uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install' name: 'nvm install ${{ matrix.node-version }} && npm install'
with: with:
@ -52,7 +52,7 @@ jobs:
github.com:443 github.com:443
nodejs.org:443 nodejs.org:443
registry.npmjs.org:443 registry.npmjs.org:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: ljharb/actions/node/install@main - uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install' name: 'nvm install ${{ matrix.node-version }} && npm install'
with: with:
@ -68,6 +68,6 @@ jobs:
with: with:
allowed-endpoints: allowed-endpoints:
github.com:443 github.com:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: check tests filenames - name: check tests filenames
run: ./rename_test.sh --check run: ./rename_test.sh --check

View File

@ -17,7 +17,7 @@ jobs:
allowed-endpoints: allowed-endpoints:
api.github.com:443 api.github.com:443
github.com:443 github.com:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: ljharb/rebase@master - uses: ljharb/rebase@master
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@ -14,8 +14,8 @@ jobs:
allowed-endpoints: allowed-endpoints:
github.com:443 github.com:443
registry.npmjs.org:443 registry.npmjs.org:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
with: with:
node-version: "14" node-version: "14"
- run: npm install - run: npm install

View File

@ -33,7 +33,7 @@ jobs:
ghcr.io:443 ghcr.io:443
github.com:443 github.com:443
pkg-containers.githubusercontent.com:443 pkg-containers.githubusercontent.com:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
- name: Set up Homebrew - name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master uses: Homebrew/actions/setup-homebrew@master
- name: Install latest shellcheck - name: Install latest shellcheck

View File

@ -17,7 +17,7 @@ jobs:
allowed-endpoints: allowed-endpoints:
github.com:443 github.com:443
registry.npmjs.org:443 registry.npmjs.org:443
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
# https://github.com/actions/checkout/issues/217#issue-599945005 # https://github.com/actions/checkout/issues/217#issue-599945005
# pulls all commits (needed for lerna / semantic release to correctly version) # pulls all commits (needed for lerna / semantic release to correctly version)
@ -25,9 +25,9 @@ jobs:
# pulls all tags (needed for lerna / semantic release to correctly version) # pulls all tags (needed for lerna / semantic release to correctly version)
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* - run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
- uses: actions/setup-node@v2 - uses: actions/setup-node@v3
with: with:
node-version: '12.x' node-version: '16'
- run: npm install - run: npm install
- run: npm run doctoc - run: npm run doctoc
- name: commit changes - name: commit changes