Skip to content

Commit

Permalink
[actions] update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ljharb committed Mar 4, 2024
1 parent 730bac9 commit 8c2bdb2
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 19 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/node-18+.yml
Expand Up @@ -39,7 +39,7 @@ jobs:
- 8

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
Expand All @@ -50,7 +50,7 @@ jobs:
NPM_CONFIG_LEGACY_PEER_DEPS: true
- run: npx ls-engines
- run: npm run unit-test
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v3.1.5

node:
name: 'node 18+'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node-minors.yml
Expand Up @@ -94,7 +94,7 @@ jobs:
eslint: 5

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install ${{ matrix.node-version }} && npm install'
with:
Expand All @@ -107,7 +107,7 @@ jobs:
- run: npx ls-engines
if: ${{ matrix.node-version >= 12 }}
- run: npm run unit-test
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v3.1.5

node:
name: 'node 4 - 17'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node-pretest.yml
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install lts/* && npm install'
with:
Expand All @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install lts/* && npm install'
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
outputs:
is-new-version: ${{ steps.cpv.outputs.is-new-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.tag }}

Expand Down Expand Up @@ -103,7 +103,7 @@ jobs:
prod.api.stepsecurity.io:443
registry.npmjs.org:443
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.tag }}

Expand Down
12 changes: 3 additions & 9 deletions .github/workflows/rebase.yml
Expand Up @@ -4,12 +4,6 @@ on: [pull_request_target]

jobs:
_:
name: "Automatic Rebase"

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: ljharb/rebase@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ljharb/actions/.github/workflows/rebase.yml@main
secrets:
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -26,7 +26,7 @@ jobs:
run: echo "current_version=${GITHUB_REF#refs/tags/v}" >> "$GITHUB_OUTPUT"
shell: bash

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: mindsers/changelog-reader-action@v2
id: changelog_reader
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/smoke-test.yml
Expand Up @@ -10,7 +10,7 @@ jobs:
if: ${{ github.repository == 'jsx-eslint/eslint-plugin-react' || github.event_name == 'workflow_dispatch' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ljharb/actions/node/install@main
name: 'nvm install lts/* && npm install'
with:
Expand Down

0 comments on commit 8c2bdb2

Please sign in to comment.