From fb8c5cfa341f1e670b4bd059d071df3f64e8b33c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Mar 2022 07:20:20 +0000 Subject: [PATCH] Bump actions/checkout from 2.4.0 to 3 (#1885) Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3.
Release notes

Sourced from actions/checkout's releases.

v3.0.0

Changelog

Sourced from actions/checkout's changelog.

Changelog

v2.3.1

v2.3.0

v2.2.0

v2.1.1

v2.1.0

v2.0.0

v2 (beta)

... (truncated)

Commits

[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=actions/checkout&package-manager=github_actions&previous-version=2.4.0&new-version=3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
--- .github/workflows/bors.yml | 14 +++++++------- .github/workflows/master.yml | 2 +- .github/workflows/pull_request.yml | 2 +- .github/workflows/release.yml | 6 +++--- .github/workflows/rust.yml | 14 +++++++------- .github/workflows/security_audit.yml | 2 +- .github/workflows/test262.yml | 4 ++-- .github/workflows/webassembly.yml | 4 ++-- 8 files changed, 24 insertions(+), 24 deletions(-) diff --git a/.github/workflows/bors.yml b/.github/workflows/bors.yml index 4ccf5f7ab4..e7dc2980ac 100644 --- a/.github/workflows/bors.yml +++ b/.github/workflows/bors.yml @@ -11,7 +11,7 @@ jobs: name: Tests on Linux runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -34,7 +34,7 @@ jobs: name: Tests on Windows runs-on: windows-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -57,7 +57,7 @@ jobs: name: Tests on MacOS runs-on: macos-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -72,7 +72,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -88,7 +88,7 @@ jobs: name: Clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -112,7 +112,7 @@ jobs: name: Examples runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -141,7 +141,7 @@ jobs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 40c4799d5a..6b21ebc5cd 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -10,7 +10,7 @@ jobs: name: Upload docs and run benchmarks runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index f94d16362e..4990e5717c 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -5,7 +5,7 @@ jobs: name: run benchmark runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: actions-rs/toolchain@v1.0.7 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f906f7ae6c..bc4ac5d7d2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} steps: - name: Git Checkout - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: ref: ${{ github.sha }} - run: cargo login ${CARGO_REGISTRY_TOKEN} @@ -20,10 +20,10 @@ jobs: needs: publish runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 with: ref: main - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 with: ref: gh-pages path: dist diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 757c38c245..65b2c6666d 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -13,7 +13,7 @@ jobs: name: Tests on Linux runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -38,7 +38,7 @@ jobs: name: Tests on Windows runs-on: windows-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -61,7 +61,7 @@ jobs: name: Tests on MacOS runs-on: macos-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -76,7 +76,7 @@ jobs: name: Rustfmt runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -92,7 +92,7 @@ jobs: name: Clippy runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -116,7 +116,7 @@ jobs: name: Examples runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable @@ -145,7 +145,7 @@ jobs: name: Documentation runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable diff --git a/.github/workflows/security_audit.yml b/.github/workflows/security_audit.yml index 91bd524ea7..d54cb3cecb 100644 --- a/.github/workflows/security_audit.yml +++ b/.github/workflows/security_audit.yml @@ -6,7 +6,7 @@ jobs: audit: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/audit-check@v1.2.0 with: token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/test262.yml b/.github/workflows/test262.yml index fdc3000f65..9b1d63241f 100644 --- a/.github/workflows/test262.yml +++ b/.github/workflows/test262.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout the repository - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: submodules: true path: boa @@ -36,7 +36,7 @@ jobs: # Run the test suite and upload the results - name: Checkout GitHub pages - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 with: ref: gh-pages path: gh-pages diff --git a/.github/workflows/webassembly.yml b/.github/workflows/webassembly.yml index a3f2ff9592..0e353bcf90 100644 --- a/.github/workflows/webassembly.yml +++ b/.github/workflows/webassembly.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2.4.0 + uses: actions/checkout@v3 - name: Check code formatting run: npx prettier --check . @@ -24,7 +24,7 @@ jobs: env: WASM_PACK_PATH: ~/.cargo/bin/wasm-pack steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - uses: actions-rs/toolchain@v1.0.7 with: toolchain: stable