Skip to content

Commit 8791ed1

Browse files
chore(deps): bump the github-actions group across 1 directory with 4 updates
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [chromaui/action](https://github.com/chromaui/action), [actions/cache](https://github.com/actions/cache) and [actions/upload-artifact](https://github.com/actions/upload-artifact). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `chromaui/action` from 17 to 18 - [Release notes](https://github.com/chromaui/action/releases) - [Changelog](https://github.com/chromaui/action/blob/main/CHANGELOG.md) - [Commits](chromaui/action@v17...v18) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v6) 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/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: chromaui/action dependency-version: '18' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 1ca21a8 commit 8791ed1

3 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/chromatic.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
github.event_name != 'push' ||
6464
!startsWith(github.event.head_commit.message, 'chore: version packages')
6565
steps:
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@v7
6767
with:
6868
# Chromatic needs full git history to detect baselines and changes.
6969
fetch-depth: 0
@@ -83,7 +83,7 @@ jobs:
8383
run: pnpm install --frozen-lockfile
8484

8585
- name: Publish to Chromatic
86-
uses: chromaui/action@v17
86+
uses: chromaui/action@v18
8787
with:
8888
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
8989
# Skip waiting for the visual review to finish — GitHub Checks get

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
name: lint + typecheck + build + test
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
1818

1919
- name: Install pnpm
2020
uses: pnpm/action-setup@v6
@@ -63,7 +63,7 @@ jobs:
6363
name: story accessibility (axe)
6464
runs-on: ubuntu-latest
6565
steps:
66-
- uses: actions/checkout@v6
66+
- uses: actions/checkout@v7
6767

6868
- name: Install pnpm
6969
uses: pnpm/action-setup@v6
@@ -84,7 +84,7 @@ jobs:
8484
# version actually moves. Keeps this job cheap on every other run.
8585
- name: Cache Playwright browsers
8686
id: playwright-cache
87-
uses: actions/cache@v4
87+
uses: actions/cache@v6
8888
with:
8989
path: ~/.cache/ms-playwright
9090
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
@@ -103,7 +103,7 @@ jobs:
103103
name: consumer harness (playwright e2e)
104104
runs-on: ubuntu-latest
105105
steps:
106-
- uses: actions/checkout@v6
106+
- uses: actions/checkout@v7
107107

108108
- name: Install pnpm
109109
uses: pnpm/action-setup@v6
@@ -121,7 +121,7 @@ jobs:
121121

122122
- name: Cache Playwright browsers
123123
id: playwright-cache
124-
uses: actions/cache@v4
124+
uses: actions/cache@v6
125125
with:
126126
path: ~/.cache/ms-playwright
127127
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
@@ -146,7 +146,7 @@ jobs:
146146

147147
- name: Upload Playwright report on failure
148148
if: failure()
149-
uses: actions/upload-artifact@v4
149+
uses: actions/upload-artifact@v7
150150
with:
151151
name: playwright-report
152152
path: examples/saas-demo/playwright-report

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
app-id: ${{ secrets.RELEASE_APP_ID }}
2929
private-key: ${{ secrets.RELEASE_APP_PRIVATE_KEY }}
3030

31-
- uses: actions/checkout@v6
31+
- uses: actions/checkout@v7
3232
with:
3333
token: ${{ steps.app-token.outputs.token }}
3434
fetch-depth: 0

0 commit comments

Comments
 (0)