mirror of
https://github.com/hectorm/otpauth.git
synced 2026-05-07 20:12:27 +00:00
Bump the github-actions-all group across 1 directory with 5 updates (#647)
Bumps the github-actions-all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `5.0.0` | `6.0.0` | | [github/codeql-action](https://github.com/github/codeql-action) | `4.30.8` | `4.31.6` | | [actions/setup-node](https://github.com/actions/setup-node) | `5.0.0` | `6.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.6.2` | `5.0.0` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5.0.0` | `6.0.0` | Updates `actions/checkout` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/08c6903cd8c0fde910a37f88322edcfb5dd907a8...1af3b93b6815bc44a9784bd300feb67ff0d1eeb3) Updates `github/codeql-action` from 4.30.8 to 4.31.6 - [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/f443b600d91635bebf5b0d9ebc620189c0d6fba5...fe4161a26a8629af62121b670040955b330f9af2) Updates `actions/setup-node` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/a0853c24544627f65ddf259abe73b1d18a591444...2028fbc5c25fe9cf00d9f06a71cc4710d4507903) Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/ea165f8d65b6e75b540449e92b4886f43607fa02...330a01c490aca151604b8cf639adc76d48f6c5d4) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/634f93cb2916e3fdff6788551b99b062d0335ce0...018cc2cf5baa6db3ef3c5f8a56943fffe632ef53) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: github/codeql-action dependency-version: 4.31.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions-all - dependency-name: actions/setup-node dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions-all - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major 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>
This commit is contained in:
@@ -27,12 +27,12 @@ jobs:
|
||||
language: ["javascript"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Initialize CodeQL"
|
||||
uses: "github/codeql-action/init@f443b600d91635bebf5b0d9ebc620189c0d6fba5"
|
||||
uses: "github/codeql-action/init@fe4161a26a8629af62121b670040955b330f9af2"
|
||||
with:
|
||||
languages: "${{ matrix.language }}"
|
||||
- name: "Autobuild"
|
||||
uses: "github/codeql-action/autobuild@f443b600d91635bebf5b0d9ebc620189c0d6fba5"
|
||||
uses: "github/codeql-action/autobuild@fe4161a26a8629af62121b670040955b330f9af2"
|
||||
- name: "Perform CodeQL Analysis"
|
||||
uses: "github/codeql-action/analyze@f443b600d91635bebf5b0d9ebc620189c0d6fba5"
|
||||
uses: "github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2"
|
||||
|
||||
+22
-22
@@ -25,9 +25,9 @@ jobs:
|
||||
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Use Node.js lts/*"
|
||||
uses: "actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444"
|
||||
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903"
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
@@ -45,7 +45,7 @@ jobs:
|
||||
run: '[ -z "$(git status --porcelain ./dist/)" ] || { git diff >&2; exit 1; }'
|
||||
- name: "Upload dist artifact"
|
||||
if: "runner.os == 'Linux'"
|
||||
uses: "actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02"
|
||||
uses: "actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
@@ -70,17 +70,17 @@ jobs:
|
||||
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
- name: "Use Node.js ${{ matrix.node_version }}"
|
||||
uses: "actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444"
|
||||
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903"
|
||||
with:
|
||||
node-version: "${{ matrix.node_version }}"
|
||||
cache: "npm"
|
||||
@@ -102,12 +102,12 @@ jobs:
|
||||
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
@@ -133,12 +133,12 @@ jobs:
|
||||
os: ["ubuntu-latest", "macos-latest"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
@@ -164,17 +164,17 @@ jobs:
|
||||
os: ["ubuntu-latest"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
- name: "Use Node.js lts/*"
|
||||
uses: "actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444"
|
||||
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903"
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
@@ -196,12 +196,12 @@ jobs:
|
||||
os: ["ubuntu-latest", "windows-latest", "macos-latest"]
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
@@ -210,7 +210,7 @@ jobs:
|
||||
with:
|
||||
quickjs-version: "${{ matrix.quickjs_version }}"
|
||||
- name: "Use Node.js lts/*"
|
||||
uses: "actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444"
|
||||
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903"
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
cache: "npm"
|
||||
@@ -229,17 +229,17 @@ jobs:
|
||||
id-token: "write"
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
- name: "Use Node.js lts/*"
|
||||
uses: "actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444"
|
||||
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903"
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
registry-url: "https://registry.npmjs.org"
|
||||
@@ -262,17 +262,17 @@ jobs:
|
||||
id-token: "write"
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Remove dist directory"
|
||||
shell: "bash"
|
||||
run: "rm -rf ./dist/"
|
||||
- name: "Download dist artifact"
|
||||
uses: "actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0"
|
||||
uses: "actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53"
|
||||
with:
|
||||
name: "dist"
|
||||
path: "./dist/"
|
||||
- name: "Use Node.js lts/*"
|
||||
uses: "actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444"
|
||||
uses: "actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903"
|
||||
with:
|
||||
node-version: "lts/*"
|
||||
- name: "Publish"
|
||||
|
||||
@@ -20,7 +20,7 @@ jobs:
|
||||
security-events: "write"
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
uses: "actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8"
|
||||
uses: "actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3"
|
||||
- name: "Perform security analysis"
|
||||
uses: "ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a"
|
||||
with:
|
||||
@@ -29,6 +29,6 @@ jobs:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
publish_results: false
|
||||
- name: "Upload SARIF file"
|
||||
uses: "github/codeql-action/upload-sarif@f443b600d91635bebf5b0d9ebc620189c0d6fba5"
|
||||
uses: "github/codeql-action/upload-sarif@fe4161a26a8629af62121b670040955b330f9af2"
|
||||
with:
|
||||
sarif_file: "./results.sarif"
|
||||
|
||||
Reference in New Issue
Block a user