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
6 changes: 6 additions & 0 deletions .changeset/slimy-rules-learn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@jspsych/plugin-button-click-counter": patch
"@jspsych/plugin-emoji-screen": patch
---

Advance-Key Change in click-counter plugin
42 changes: 42 additions & 0 deletions .github/workflows/scorecard.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: OSSF Scorecard

on:
push:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "30 1 * * 6"

permissions:
contents: read

jobs:
analysis:
runs-on: ubuntu-latest
permissions:
# Required when publishing results (badge / API / code scanning)
security-events: write
id-token: write

# Recommended reads for private repos to avoid GraphQL/SAST gaps
contents: read
issues: read
pull-requests: read
checks: read

steps:
- name: Checkout repository
uses: actions/checkout@v4

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium

score is 3: GitHub-owned GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io
Click Remediation section below for further remediation help

- name: Run Scorecard analysis
uses: ossf/scorecard-action@v2.4.3

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium

score is 3: third-party GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io
Click Remediation section below for further remediation help
with:
results_file: results.sarif
results_format: sarif
publish_results: true

- name: Upload results to Code Scanning
uses: github/codeql-action/upload-sarif@v3

Check warning

Code scanning / Scorecard

Pinned-Dependencies Medium

score is 3: GitHub-owned GitHubAction not pinned by hash
Remediation tip: update your workflow using https://app.stepsecurity.io
Click Remediation section below for further remediation help
with:
sarif_file: results.sarif
Loading