Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4 (#90)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Mar 25, 2024
1 parent f31b9c7 commit a583ca3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,21 @@ jobs:
name: run lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-repo
- run: pnpm run lint --max-warnings=0
format:
name: run format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-repo
- run: pnpm prettier --check .
build:
name: run build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-repo
- run: pnpm run build
- uses: actions/upload-artifact@v3
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-repo
- uses: actions/download-artifact@v3
with:
Expand All @@ -57,7 +57,7 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-repo
with:
node-version: ${{ matrix.node_version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/setup-repo
- run: pnpm run build
- name: Create Release Pull Request or Publish to npm
Expand Down

0 comments on commit a583ca3

Please sign in to comment.