mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
chore(deps): Bump the all group with 5 updates (#12035)
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:
parent
99b2b4a4e0
commit
f3afc06894
2
.github/workflows/changed-packages.yml
vendored
2
.github/workflows/changed-packages.yml
vendored
@ -29,7 +29,7 @@ jobs:
|
||||
git fetch origin main --depth 1 &&
|
||||
git merge-base --is-ancestor origin/main @;
|
||||
- name: Detect changed packages
|
||||
uses: dorny/paths-filter@ebc4d7e9ebcb0b1eb21480bb8f43113e996ac77a # v3.0.1
|
||||
uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2
|
||||
id: changes
|
||||
with:
|
||||
filters: |
|
||||
|
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
@ -195,7 +195,7 @@ jobs:
|
||||
run: npm run build --workspace @puppeteer-test/test
|
||||
- name: Setup cache for Chrome binary
|
||||
if: ${{ matrix.suite != 'chrome-bidi' }}
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/chrome
|
||||
key: Chrome-${{ runner.os }}-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
||||
@ -204,7 +204,7 @@ jobs:
|
||||
run: npm run postinstall
|
||||
- name: Setup cache for Chrome Canary binary
|
||||
if: ${{ matrix.suite == 'chrome-bidi' }}
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/chrome-canary
|
||||
key: Chrome-Canary-${{ runner.os }}-${{ hashFiles('package.json') }}
|
||||
@ -294,7 +294,7 @@ jobs:
|
||||
- name: Build packages
|
||||
run: npm run build --workspace @puppeteer-test/test
|
||||
- name: Setup cache for Firefox binary
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/firefox
|
||||
key: Firefox-${{ runner.os }}-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
||||
@ -379,7 +379,7 @@ jobs:
|
||||
os: macos-latest
|
||||
steps:
|
||||
- name: Download installation test
|
||||
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
|
||||
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4
|
||||
with:
|
||||
name: installation-test
|
||||
- name: Unpack installation test
|
||||
@ -510,7 +510,7 @@ jobs:
|
||||
env:
|
||||
PUPPETEER_SKIP_DOWNLOAD: true
|
||||
- name: Setup cache for Chrome binary
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/chrome
|
||||
key: Chrome-${{ runner.os }}-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
||||
|
6
.github/workflows/deflake.yml
vendored
6
.github/workflows/deflake.yml
vendored
@ -67,7 +67,7 @@ jobs:
|
||||
run: npm run build -w @puppeteer-test/test
|
||||
- name: Setup cache for Chrome binary
|
||||
if: ${{ inputs.suite != 'chrome-bidi' }}
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/chrome
|
||||
key: Chrome-${{ runner.os }}-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
||||
@ -76,7 +76,7 @@ jobs:
|
||||
run: npm run postinstall
|
||||
- name: Setup cache for Chrome Canary binary
|
||||
if: ${{ inputs.suite == 'chrome-bidi' }}
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/chrome-canary
|
||||
key: Chrome-Canary-${{ runner.os }}-${{ hashFiles('package.json') }}
|
||||
@ -123,7 +123,7 @@ jobs:
|
||||
- name: Build packages
|
||||
run: npm run build -w @puppeteer-test/test
|
||||
- name: Setup cache for Firefox binary
|
||||
uses: actions/cache@13aacd865c20de90d75de3b17ebe84f7a17d57d2 # v4.0.0
|
||||
uses: actions/cache@ab5e6d0c87105b4c9c2047343972218f562e4319 # v4.0.1
|
||||
with:
|
||||
path: ~/.cache/puppeteer/firefox
|
||||
key: Firefox-${{ runner.os }}-${{ hashFiles('packages/puppeteer-core/src/revisions.ts') }}-${{ hashFiles('packages/puppeteer/src/node/install.ts') }}
|
||||
|
2
.github/workflows/devtools.yml
vendored
2
.github/workflows/devtools.yml
vendored
@ -51,7 +51,7 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Download Puppeteer build
|
||||
uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
|
||||
uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4
|
||||
with:
|
||||
name: puppeteer-build
|
||||
- name: Set up Node.js
|
||||
|
2
.github/workflows/issue-analyzer.yml
vendored
2
.github/workflows/issue-analyzer.yml
vendored
@ -79,7 +79,7 @@ jobs:
|
||||
PACKAGE_MANAGER: ${{ needs.analyze-issue.outputs.packageManager }}
|
||||
NODE_VERSION: ${{ needs.analyze-issue.outputs.nodeVersion }}
|
||||
steps:
|
||||
- uses: actions/download-artifact@eaceaf801fd36c7dee90939fad912460b18a1ffe # v4.1.2
|
||||
- uses: actions/download-artifact@c850b930e6ba138125429b7e5c93fc707a7f8427 # v4.1.4
|
||||
with:
|
||||
name: issue-files
|
||||
path: '.'
|
||||
|
2
.github/workflows/scorecards-analysis.yml
vendored
2
.github/workflows/scorecards-analysis.yml
vendored
@ -49,6 +49,6 @@ jobs:
|
||||
|
||||
# Upload the results to GitHub’s code scanning dashboard.
|
||||
- name: 'Upload to code-scanning'
|
||||
uses: github/codeql-action/upload-sarif@47b3d888fe66b639e431abf22ebca059152f1eea # v3.24.5
|
||||
uses: github/codeql-action/upload-sarif@8a470fddafa5cbb6266ee11b37ef4d8aae19c571 # v3.24.6
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
|
4
.github/workflows/update-browser-pins.yml
vendored
4
.github/workflows/update-browser-pins.yml
vendored
@ -32,7 +32,7 @@ jobs:
|
||||
node tools/update_chrome_revision.mjs
|
||||
- name: Create Pull Request
|
||||
if: ${{ steps.update.outputs.commit }}
|
||||
uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6.0.0
|
||||
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v6.0.1
|
||||
with:
|
||||
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
|
||||
branch: browser-automation-bot/update-browser-version-chrome
|
||||
@ -64,7 +64,7 @@ jobs:
|
||||
node packages/browsers/tools/updateVersions.mjs
|
||||
- name: Create Pull Request
|
||||
if: ${{ steps.update.outputs.commit }}
|
||||
uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6.0.0
|
||||
uses: peter-evans/create-pull-request@a4f52f8033a6168103c2538976c07b467e8163bc # v6.0.1
|
||||
with:
|
||||
token: ${{ secrets.BROWSER_AUTOMATION_BOT_TOKEN }}
|
||||
branch: browser-automation-bot/update-browser-version-firefox
|
||||
|
Loading…
Reference in New Issue
Block a user