Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Default
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- run: npm install
- run: npm run all
Expand Down Expand Up @@ -102,5 +102,5 @@ jobs:
name: Validate actions typing
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
- uses: typesafegithub/github-actions-typing@v1
4 changes: 2 additions & 2 deletions .github/workflows/pr_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event.sender.login != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.base.sha }}

- run: node -p "'version=' + require('./package.json').version" >> $GITHUB_OUTPUT
id: base-version

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

- run: node -p "'version=' + require('./package.json').version" >> $GITHUB_OUTPUT
id: new-version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- run: npm install
- run: npm run all
Expand Down
Loading