Skip to content

Commit

Permalink
clear pipeline warnings (#2836)
Browse files Browse the repository at this point in the history
Co-authored-by: Sawyer Burnett <sawyer.burnett@formidable.com>
  • Loading branch information
Burnett2k and Sawyer Burnett committed Mar 19, 2024
1 parent c18a09f commit 300b527
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 4 additions & 3 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,19 @@ name: Setup
description: Setup Build Step
inputs:
node-version:
default: "18.x"
description: "The version of nodejs to use."
required: true
default: '18.x'

runs:
using: "composite"
steps:
- uses: pnpm/action-setup@v2
- uses: pnpm/action-setup@v3
with:
version: 7

- name: Use Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ inputs.node-version }}
cache: 'pnpm'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/issue-stale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Close inactive issues
on:
workflow_dispatch:
schedule:
- cron: '0 * * * *'
- cron: "0 0 * * *"

jobs:
close-issues:
Expand All @@ -13,7 +13,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/stale@v4
- uses: actions/stale@v9
with:
ascending: false
operations-per-run: 100
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue-triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-22.04
if: "${{ contains(github.event.label.name, 'Status: Needs More Info :hand:') }}"
steps:
- uses: actions/github-script@v6
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.CHANGESETS_GITHUB_TOKEN }}
script: |
Expand Down

0 comments on commit 300b527

Please sign in to comment.