Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# In TypeScript actions, `dist/` is a special directory. When you reference

Check failure on line 1 in .github/workflows/check-dist.yml

View workflow job for this annotation

GitHub Actions / GitHub Actions Test

JSON Schema Validation Error

{ "instancePath": "", "schemaPath": "#/required", "keyword": "required", "params": { "missingProperty": "organization" }, "message": "must have required property 'organization'" }
# an action with the `uses:` property, `dist/index.js` is the code that will be
# run. For this project, the `dist/index.js` file is transpiled from other
# source files. This workflow ensures the `dist/` directory contains the
Expand Down Expand Up @@ -58,7 +58,7 @@
- if: ${{ failure() && steps.diff.outcome == 'failure' }}
name: Upload Artifact
id: upload
uses: actions/upload-artifact@65c4c4a1ddee5b72f698fdd19549f0f0fb45cf08 # v4.6.0
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
with:
name: dist
path: dist/
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CodeQL

Check failure on line 1 in .github/workflows/codeql-analysis.yml

View workflow job for this annotation

GitHub Actions / GitHub Actions Test

JSON Schema Validation Error

{ "instancePath": "", "schemaPath": "#/required", "keyword": "required", "params": { "missingProperty": "organization" }, "message": "must have required property 'organization'" }

on:
pull_request:
Expand Down Expand Up @@ -34,15 +34,15 @@

- name: Initialize CodeQL
id: initialize
uses: github/codeql-action/init@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
uses: github/codeql-action/init@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
with:
languages: ${{ matrix.language }}
source-root: src

- name: Autobuild
id: autobuild
uses: github/codeql-action/autobuild@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
uses: github/codeql-action/autobuild@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10

- name: Perform CodeQL Analysis
id: analyze
uses: github/codeql-action/analyze@dd746615b3b9d728a6a37ca2045b68ca76d4841a # v3.28.8
uses: github/codeql-action/analyze@b56ba49b26e50535fa1e7f7db0f4f7b4bf65d80d # v3.28.10
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Lint Codebase

Check failure on line 1 in .github/workflows/linter.yml

View workflow job for this annotation

GitHub Actions / GitHub Actions Test

JSON Schema Validation Error

{ "instancePath": "", "schemaPath": "#/required", "keyword": "required", "params": { "missingProperty": "organization" }, "message": "must have required property 'organization'" }

on:
pull_request:
Expand Down Expand Up @@ -38,7 +38,7 @@

- name: Lint Codebase
id: super-linter
uses: super-linter/super-linter/slim@85f7611e0f7b53c8573cca84aa0ed4344f6f6a4d # v7.2.1
uses: super-linter/super-linter/slim@4e8a7c2bf106c4c766c816b35ec612638dc9b6b2 # v7.3.0
env:
DEFAULT_BRANCH: main
FILTER_REGEX_EXCLUDE: dist/**/*
Expand Down
Loading