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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
name: 🔷 Type Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm typecheck

Expand All @@ -43,7 +43,7 @@ jobs:
matrix:
node: ['20', '22']
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
with:
node-version: ${{ matrix.node }}
Expand All @@ -60,22 +60,22 @@ jobs:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm test

format:
name: 🎨 Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm format:check

lint:
name: 🔍 Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
- run: pnpm lint
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
steps:
- name: 📋 Fetch Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@v2
uses: dependabot/fetch-metadata@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
tag: ${{ steps.tag.outputs.tag }}
is_prerelease: ${{ steps.tag.outputs.is_prerelease }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: 📋 Read package version
id: pkg
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
runs-on: ubuntu-latest
needs: validate
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup

- name: 🔷 Type check
Expand Down Expand Up @@ -127,19 +127,19 @@ jobs:
name: npm
url: https://www.npmjs.com/package/@stackra/mono-cli
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/setup
with:
node-version: '22'

- name: 📥 Download dist artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: dist-publish-${{ github.sha }}
path: dist/

- name: 🔧 Configure npm registry
uses: actions/setup-node@v5
uses: actions/setup-node@v6
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
github.event.inputs.dry_run != 'true' &&
startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -306,7 +306,7 @@ jobs:
steps.check.outputs.configured == 'true' &&
needs.publish.result == 'success' &&
needs.release.result == 'success'
uses: slackapi/slack-github-action@v2
uses: slackapi/slack-github-action@v3
with:
webhook: ${{ secrets.STACKRA_SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
Expand Down Expand Up @@ -360,7 +360,7 @@ jobs:
if: |
steps.check.outputs.configured == 'true' &&
(needs.publish.result == 'failure' || needs.release.result == 'failure')
uses: slackapi/slack-github-action@v2
uses: slackapi/slack-github-action@v3
with:
webhook: ${{ secrets.STACKRA_SLACK_WEBHOOK_URL }}
webhook-type: incoming-webhook
Expand Down
Loading