-
-
Notifications
You must be signed in to change notification settings - Fork 0
Bump the actions group across 1 directory with 5 updates #103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -34,10 +34,10 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: '24' | ||
|
|
||
|
|
@@ -97,7 +97,7 @@ jobs: | |
| fetch_depth: 0 | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| fetch-depth: ${{ matrix.fetch_depth }} | ||
|
|
||
|
|
@@ -158,10 +158,10 @@ jobs: | |
| - plugin: fchub-wishlist | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: '24' | ||
|
|
||
|
|
@@ -170,7 +170,7 @@ jobs: | |
|
|
||
| - name: Upload rejected package evidence | ||
| if: failure() | ||
| uses: actions/upload-artifact@v4 | ||
| uses: actions/upload-artifact@v7 | ||
| with: | ||
| name: wporg-package-${{ matrix.plugin }}-failure | ||
| path: | | ||
|
|
@@ -183,7 +183,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| # `Check for changes` below diffs against the pull request base, which | ||
| # a depth-1 checkout does not contain: the diff fails, the count comes | ||
|
|
@@ -199,7 +199,7 @@ jobs: | |
|
|
||
| - name: Setup Node.js | ||
| if: steps.changes.outputs.count > 0 | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: '20' | ||
| cache: 'npm' | ||
|
|
@@ -222,7 +222,7 @@ jobs: | |
|
|
||
| - name: Cache Playwright browsers | ||
| if: steps.changes.outputs.count > 0 | ||
| uses: actions/cache@v4 | ||
| uses: actions/cache@v6 | ||
| with: | ||
| path: ~/.cache/ms-playwright | ||
| key: ${{ runner.os }}-playwright-${{ hashFiles('plugins/fchub-memberships/package-lock.json') }} | ||
|
|
@@ -264,7 +264,7 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
| with: | ||
| # `Check for changes` below diffs against the pull request base, which | ||
| # a depth-1 checkout does not contain: the diff fails, the count comes | ||
|
|
@@ -280,7 +280,7 @@ jobs: | |
|
|
||
| - name: Setup Node.js | ||
| if: steps.changes.outputs.count > 0 | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: '20' | ||
| cache: 'npm' | ||
|
|
@@ -320,7 +320,7 @@ jobs: | |
| # job remains because the repository asserts Stream is still here for a | ||
| # possible return, not because anything is expected to run. | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
This is inside the Stream-only CI job, and the same job comments say it remains only as an inert marker; updating its action pins still maintains Stream-specific tooling without any owner reactivation in this change. Please leave the discontinued Stream lane unchanged when applying the bulk action bump. Useful? React with 👍 / 👎. |
||
|
|
||
| - name: Check for changes | ||
| id: changes | ||
|
|
@@ -330,7 +330,7 @@ jobs: | |
|
|
||
| - name: Setup Node.js | ||
| if: steps.changes.outputs.count > 0 | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: '20' | ||
|
|
||
|
|
@@ -385,10 +385,10 @@ jobs: | |
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
| uses: actions/checkout@v7 | ||
|
|
||
| - name: Setup Node.js | ||
| uses: actions/setup-node@v4 | ||
| uses: actions/setup-node@v7 | ||
| with: | ||
| node-version: '22' | ||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bump leaves the checked-in workflow contracts pinned to the old action majors, so the CI workflow's own
workflow-contractjob now fails before any product checks run. I rannode --test .github/workflows/ci-memberships-contract.test.mjs .github/workflows/ci-wporg-contract.test.mjs .github/workflows/release-memberships-contract.test.mjs .github/workflows/release-wporg-gates-contract.test.mjs .github/workflows/fchub-ci-contract.test.mjs, and six assertions still expectactions/cache@v4,upload-artifact@v4,download-artifact@v4, orcheckout@v4; update those contracts alongside these workflow changes so PRs touching these files can pass.Useful? React with 👍 / 👎.