mirror of
https://github.com/hectorm/otpauth.git
synced 2026-05-07 20:12:27 +00:00
af99e157d9
Bumps the github-actions-all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [github/codeql-action](https://github.com/github/codeql-action) | `3.29.9` | `4.30.8` | | [actions/setup-node](https://github.com/actions/setup-node) | `4.4.0` | `5.0.0` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3.0.1` | `4.0.0` | | [hectorm/ghaction-release](https://github.com/hectorm/ghaction-release) | `1.0.0` | `1.0.1` | | [ossf/scorecard-action](https://github.com/ossf/scorecard-action) | `2.4.2` | `2.4.3` | Updates `github/codeql-action` from 3.29.9 to 4.30.8 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/df559355d593797519d70b90fc8edd5db049e7a2...f443b600d91635bebf5b0d9ebc620189c0d6fba5) Updates `actions/setup-node` from 4.4.0 to 5.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/49933ea5288caeca8642d1e84afbd3f7d6820020...a0853c24544627f65ddf259abe73b1d18a591444) Updates `actions/upload-pages-artifact` from 3.0.1 to 4.0.0 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/56afc609e74202658d3ffba0e8f6dda462b719fa...7b1f4a764d45c48632c6b24a0339c27f5614fb0b) Updates `hectorm/ghaction-release` from 1.0.0 to 1.0.1 - [Release notes](https://github.com/hectorm/ghaction-release/releases) - [Commits](https://github.com/hectorm/ghaction-release/compare/066200d04c3549852afa243d631ea3dc93390f68...d0426a7a369ce2c1ed615e1a583788b22745ccfe) Updates `ossf/scorecard-action` from 2.4.2 to 2.4.3 - [Release notes](https://github.com/ossf/scorecard-action/releases) - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md) - [Commits](https://github.com/ossf/scorecard-action/compare/05b42c624433fc40578a4040d5cf5e36ddca8cde...4eaacf0543bb3f2c246792bd56e8cdeffafb205a) --- updated-dependencies: - dependency-name: github/codeql-action dependency-version: 4.30.8 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/setup-node dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/upload-pages-artifact dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: hectorm/ghaction-release dependency-version: 1.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-all - dependency-name: ossf/scorecard-action dependency-version: 2.4.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions-all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
35 lines
997 B
YAML
35 lines
997 B
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: "Scorecard security analysis"
|
|
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
schedule:
|
|
- cron: "25 10 * * 3"
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
analyze:
|
|
name: "Scorecard security analysis"
|
|
runs-on: "ubuntu-latest"
|
|
permissions:
|
|
actions: "read"
|
|
contents: "read"
|
|
security-events: "write"
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
|
- name: "Perform security analysis"
|
|
uses: "ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a"
|
|
with:
|
|
results_file: "./results.sarif"
|
|
results_format: "sarif"
|
|
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
|
publish_results: false
|
|
- name: "Upload SARIF file"
|
|
uses: "github/codeql-action/upload-sarif@f443b600d91635bebf5b0d9ebc620189c0d6fba5"
|
|
with:
|
|
sarif_file: "./results.sarif"
|