Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ on:

jobs:
lint:
uses: reqstool/.github/.github/workflows/typescript/lint.yml@main
uses: reqstool/.github/.github/workflows/typescript-lint.yml@main

build:
needs: lint
uses: reqstool/.github/.github/workflows/typescript/build.yml@main
uses: reqstool/.github/.github/workflows/typescript-build.yml@main
with:
use-xvfb: true
dependency-version: ${{ inputs.reqstool_version || 'latest' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-semantic-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

jobs:
check:
uses: reqstool/.github/.github/workflows/check-semantic-pr.yml@main
uses: reqstool/.github/.github/workflows/common-check-semantic-pr.yml@main

Check warning

Code scanning / CodeQL

Workflow does not contain permissions Medium

Actions job or workflow does not limit the permissions of the GITHUB_TOKEN. Consider setting an explicit permissions block, using the following as a minimal starting point: {}
Comment thread
github-advanced-security[bot] marked this conversation as resolved.
Fixed
6 changes: 3 additions & 3 deletions .github/workflows/publish_vscode_ext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ on:
jobs:
check-release:
if: github.event_name == 'release'
uses: reqstool/.github/.github/workflows/common/check-release.yml@main
uses: reqstool/.github/.github/workflows/common-check-release.yml@main
with:
version-format: semver

Expand All @@ -29,7 +29,7 @@ jobs:
dry-run:
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
needs: [build]
uses: reqstool/.github/.github/workflows/typescript/publish-to-vscode.yml@main
uses: reqstool/.github/.github/workflows/typescript-publish-to-vscode.yml@main
with:
dry-run: true
dependency-name: reqstoolVersion
Expand All @@ -41,7 +41,7 @@ jobs:
publish:
if: github.event_name == 'release'
needs: [check-release, build]
uses: reqstool/.github/.github/workflows/typescript/publish-to-vscode.yml@main
uses: reqstool/.github/.github/workflows/typescript-publish-to-vscode.yml@main
with:
dry-run: false
dependency-name: reqstoolVersion
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
preview:
uses: reqstool/.github/.github/workflows/common/release-preview.yml@main
uses: reqstool/.github/.github/workflows/common-release-preview.yml@main
with:
version-command: 'node -p "require(''./package.json'').version"'
permissions:
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 @@ on:

jobs:
release:
uses: reqstool/.github/.github/workflows/common/release.yml@main
uses: reqstool/.github/.github/workflows/common-release.yml@main
with:
version: ${{ inputs.version }}
version-format: semver
Expand Down