Skip to content

Commit 93401cd

Browse files
Bump the actions-deps group with 6 updates
Bumps the actions-deps group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/github-script](https://github.com/actions/github-script) | `7` | `8` | | [patrickedqvist/wait-for-vercel-preview](https://github.com/patrickedqvist/wait-for-vercel-preview) | `1.3.2` | `1.3.3` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [cypress-io/github-action](https://github.com/cypress-io/github-action) | `6.7.16` | `7.1.5` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/github-script` from 7 to 8 - [Release notes](https://github.com/actions/github-script/releases) - [Commits](actions/github-script@v7...v8) Updates `patrickedqvist/wait-for-vercel-preview` from 1.3.2 to 1.3.3 - [Release notes](https://github.com/patrickedqvist/wait-for-vercel-preview/releases) - [Commits](patrickedqvist/wait-for-vercel-preview@v1.3.2...v1.3.3) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `cypress-io/github-action` from 6.7.16 to 7.1.5 - [Release notes](https://github.com/cypress-io/github-action/releases) - [Changelog](https://github.com/cypress-io/github-action/blob/master/CHANGELOG.md) - [Commits](cypress-io/github-action@v6.7.16...v7.1.5) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/github-script dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: patrickedqvist/wait-for-vercel-preview dependency-version: 1.3.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions-deps - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: cypress-io/github-action dependency-version: 7.1.5 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1cd06bb commit 93401cd

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/create-release-pr.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ jobs:
1414
steps:
1515
- name: Checkout actions/github-script
1616
uses:
17-
actions/checkout@v4 # Good practice to checkout if the script becomes complex or needs local files
17+
actions/checkout@v6 # Good practice to checkout if the script becomes complex or needs local files
1818
# Not strictly necessary for this specific github-script if it's self-contained
1919

2020
- name: Create or Update Release Pull Request
21-
uses: actions/github-script@v7
21+
uses: actions/github-script@v8
2222
with:
2323
script: |
2424
const { repo, owner } = context.repo;

.github/workflows/cypress.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
preview_url: ${{ steps.wait.outputs.url }}
1818
steps:
1919
- name: Wait for Vercel preview deployment to be ready
20-
uses: patrickedqvist/wait-for-vercel-preview@v1.3.2
20+
uses: patrickedqvist/wait-for-vercel-preview@v1.3.3
2121
id: wait
2222
with:
2323
token: ${{ secrets.GITHUB_TOKEN }}
@@ -35,7 +35,7 @@ jobs:
3535
outputs:
3636
specs: ${{ steps.find.outputs.specs }}
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v6
3939
- id: find
4040
run: |
4141
specs=$(find cypress/e2e -name "*.cy.ts" | sort | jq -R -s -c 'split("\n")[:-1]')
@@ -55,15 +55,15 @@ jobs:
5555
matrix:
5656
spec: ${{ fromJson(needs.discover.outputs.specs) }}
5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v6
5959

60-
- uses: actions/setup-node@v4
60+
- uses: actions/setup-node@v6
6161
with:
6262
node-version: 24
6363
cache: npm
6464

6565
- name: Run Cypress tests
66-
uses: cypress-io/github-action@v6.7.16
66+
uses: cypress-io/github-action@v7.1.5
6767
with:
6868
browser: chrome
6969
config-file: cypress.config.ts
@@ -74,7 +74,7 @@ jobs:
7474
CYPRESS_BASE_URL: ${{ needs.wait-for-vercel.outputs.preview_url }}
7575
NEXT_PUBLIC_GA_ID: ${{ secrets.NEXT_PUBLIC_GA_ID }}
7676

77-
- uses: actions/upload-artifact@v4
77+
- uses: actions/upload-artifact@v7
7878
if: failure()
7979
with:
8080
name: cypress-screenshots-${{ strategy.job-index }}

0 commit comments

Comments
 (0)