Skip to content

Commit 0353ddd

Browse files
authored
Revert "chore(deps): bump MetaMask/action-checkout-and-setup from 2 to 3 (#8047)" (#8055)
This reverts commit 0e1e911. ## Explanation <!-- Thanks for your contribution! Take a moment to answer these questions so that reviewers have the information they need to properly understand your changes: * What is the current state of things and why does it need to change? * What is the solution your changes offer and how does it work? * Are there any changes whose purpose might not obvious to those unfamiliar with the domain? * If your primary goal was to update one package but you found you had to update another one along the way, why did you do so? * If you had to upgrade a dependency, why did you do so? --> ## References <!-- Are there any issues that this pull request is tied to? Are there other links that reviewers should consult to understand these changes better? Are there client or consumer pull requests to adopt any breaking changes? For example: * Fixes #12345 * Related to #67890 --> ## Checklist - [ ] I've updated the test suite for new or updated code as appropriate - [ ] I've updated documentation (JSDoc, Markdown, etc.) for new or updated code as appropriate - [ ] I've communicated my changes to consumers by [updating changelogs for packages I've changed](https://github.com/MetaMask/core/tree/main/docs/processes/updating-changelogs.md) - [ ] I've introduced [breaking changes](https://github.com/MetaMask/core/tree/main/docs/processes/breaking-changes.md) in this PR and have prepared draft pull requests for clients and consumer packages to resolve them <!-- CURSOR_SUMMARY --> --- > [!NOTE] > **Low Risk** > Low risk: this only changes GitHub Actions workflow dependencies, but it can affect CI/release/publish behavior if v2 differs from v3. > > **Overview** > Reverts all CI and release GitHub Actions workflows back from `MetaMask/action-checkout-and-setup@v3` to `@v2` (including label-check, lint/build/test, preview publish, and release publish pipelines). > > No other workflow logic changes are included; the functional impact is limited to whatever behavior differs between the action versions. > > <sup>Written by [Cursor Bugbot](https://cursor.com/dashboard?tab=bugbot) for commit 50a194a. This will update automatically on new commits. Configure [here](https://cursor.com/dashboard?tab=bugbot).</sup> <!-- /CURSOR_SUMMARY -->
1 parent 0e1e911 commit 0353ddd

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/ensure-blocking-pr-labels-absent.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pull-requests: read
1717
steps:
1818
- name: Checkout and setup environment
19-
uses: MetaMask/action-checkout-and-setup@v3
19+
uses: MetaMask/action-checkout-and-setup@v2
2020
with:
2121
is-high-risk-environment: false
2222
- name: Run command

.github/workflows/lint-build-test.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
child-workspace-package-names: ${{ steps.workspace-package-names.outputs.child-workspace-package-names }}
1515
steps:
1616
- name: Checkout and setup environment
17-
uses: MetaMask/action-checkout-and-setup@v3
17+
uses: MetaMask/action-checkout-and-setup@v2
1818
with:
1919
is-high-risk-environment: false
2020
cache-node-modules: true
@@ -34,7 +34,7 @@ jobs:
3434
node-version: [22.x]
3535
steps:
3636
- name: Checkout and setup environment
37-
uses: MetaMask/action-checkout-and-setup@v3
37+
uses: MetaMask/action-checkout-and-setup@v2
3838
with:
3939
is-high-risk-environment: false
4040
node-version: ${{ matrix.node-version }}
@@ -57,7 +57,7 @@ jobs:
5757
package-name: ${{ fromJson(needs.prepare.outputs.child-workspace-package-names) }}
5858
steps:
5959
- name: Checkout and setup environment
60-
uses: MetaMask/action-checkout-and-setup@v3
60+
uses: MetaMask/action-checkout-and-setup@v2
6161
with:
6262
is-high-risk-environment: false
6363
node-version: ${{ matrix.node-version }}
@@ -79,7 +79,7 @@ jobs:
7979
node-version: [22.x]
8080
steps:
8181
- name: Checkout and setup environment
82-
uses: MetaMask/action-checkout-and-setup@v3
82+
uses: MetaMask/action-checkout-and-setup@v2
8383
with:
8484
is-high-risk-environment: false
8585
node-version: ${{ matrix.node-version }}
@@ -101,7 +101,7 @@ jobs:
101101
node-version: [22.x]
102102
steps:
103103
- name: Checkout and setup environment
104-
uses: MetaMask/action-checkout-and-setup@v3
104+
uses: MetaMask/action-checkout-and-setup@v2
105105
with:
106106
is-high-risk-environment: false
107107
node-version: ${{ matrix.node-version }}
@@ -124,7 +124,7 @@ jobs:
124124
package-name: ${{ fromJson(needs.prepare.outputs.child-workspace-package-names) }}
125125
steps:
126126
- name: Checkout and setup environment
127-
uses: MetaMask/action-checkout-and-setup@v3
127+
uses: MetaMask/action-checkout-and-setup@v2
128128
with:
129129
is-high-risk-environment: false
130130
node-version: ${{ matrix.node-version }}

.github/workflows/publish-preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
PR_NUMBER: ${{ github.event.issue.number }}
3535
- name: Checkout and setup environment
36-
uses: MetaMask/action-checkout-and-setup@v3
36+
uses: MetaMask/action-checkout-and-setup@v2
3737
with:
3838
is-high-risk-environment: true
3939
- name: Get commit SHA
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: ubuntu-latest
6666
steps:
6767
- name: Checkout and setup environment
68-
uses: MetaMask/action-checkout-and-setup@v3
68+
uses: MetaMask/action-checkout-and-setup@v2
6969
with:
7070
is-high-risk-environment: true
7171
- name: Restore build artifacts

.github/workflows/publish-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout and setup environment
18-
uses: MetaMask/action-checkout-and-setup@v3
18+
uses: MetaMask/action-checkout-and-setup@v2
1919
with:
2020
is-high-risk-environment: true
2121
- uses: MetaMask/action-publish-release@v3
@@ -38,7 +38,7 @@ jobs:
3838
needs: publish-release
3939
steps:
4040
- name: Checkout and setup environment
41-
uses: MetaMask/action-checkout-and-setup@v3
41+
uses: MetaMask/action-checkout-and-setup@v2
4242
with:
4343
is-high-risk-environment: true
4444
ref: ${{ github.sha }}
@@ -59,7 +59,7 @@ jobs:
5959
needs: publish-npm-dry-run
6060
steps:
6161
- name: Checkout and setup environment
62-
uses: MetaMask/action-checkout-and-setup@v3
62+
uses: MetaMask/action-checkout-and-setup@v2
6363
with:
6464
is-high-risk-environment: true
6565
ref: ${{ github.sha }}

0 commit comments

Comments
 (0)