diff --git a/README.md b/README.md index ddb26e9e..974dbd95 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ jobs: run: npm run build-storybook - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` @@ -198,7 +198,7 @@ jobs: run: npm run serve & - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` @@ -256,7 +256,7 @@ jobs: run: npm run story:build - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` @@ -318,7 +318,7 @@ jobs: run: npm run start & - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` @@ -398,7 +398,7 @@ jobs: run: npx playwright install --with-deps && npm run test:e2e - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 env: LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} ``` diff --git a/action.yml b/action.yml index ca6dbbe0..26d4cdec 100644 --- a/action.yml +++ b/action.yml @@ -13,6 +13,6 @@ inputs: required: false runs: using: 'docker' - image: 'docker://lostpixel/lost-pixel:v3.15.1' + image: 'docker://lostpixel/lost-pixel:v3.16.0' # for branch testing # image: 'Dockerfile' diff --git a/docs/guides/getting-started/getting-started-2.md b/docs/guides/getting-started/getting-started-2.md index a0e7ddd9..b2b13a4c 100644 --- a/docs/guides/getting-started/getting-started-2.md +++ b/docs/guides/getting-started/getting-started-2.md @@ -38,7 +38,7 @@ coverY: 0 run: npm run serve & - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 4. _(Optional)_ Add [automatic PR for easy baseline update](../../recipes/lost-pixel-oss/automatic-baseline-update-pr.md) diff --git a/docs/guides/getting-started/getting-started.md b/docs/guides/getting-started/getting-started.md index a285e84d..18334907 100644 --- a/docs/guides/getting-started/getting-started.md +++ b/docs/guides/getting-started/getting-started.md @@ -42,7 +42,7 @@ coverY: 0 run: npm run serve & - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` {% endcode %} diff --git a/docs/recipes/lost-pixel-oss/automatic-baseline-update-pr.md b/docs/recipes/lost-pixel-oss/automatic-baseline-update-pr.md index 19feb6bc..f48ce4b1 100644 --- a/docs/recipes/lost-pixel-oss/automatic-baseline-update-pr.md +++ b/docs/recipes/lost-pixel-oss/automatic-baseline-update-pr.md @@ -36,7 +36,7 @@ jobs: - name: Lost Pixel id: lp - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 env: LOST_PIXEL_MODE: update - name: Create Pull Request diff --git a/docs/recipes/lost-pixel-platform/monorepo.md b/docs/recipes/lost-pixel-platform/monorepo.md index fbe5d834..ea5c7e94 100644 --- a/docs/recipes/lost-pixel-platform/monorepo.md +++ b/docs/recipes/lost-pixel-platform/monorepo.md @@ -70,7 +70,7 @@ jobs: CI: true - name: ${{ matrix.config.name }} - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 env: LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} LOST_PIXEL_CONFIG_DIR: ${{ matrix.config.package }} @@ -83,7 +83,7 @@ jobs: uses: actions/checkout@v2 - name: Lost Pixel Finalize - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 env: LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} LOST_PIXEL_CONFIG_DIR: apps/web diff --git a/docs/setup/integrating-with-github-actions.md b/docs/setup/integrating-with-github-actions.md index 247d6d23..202b80b8 100644 --- a/docs/setup/integrating-with-github-actions.md +++ b/docs/setup/integrating-with-github-actions.md @@ -4,7 +4,7 @@ Lost Pixel has first-class support for GitHub Actions, offering a dedicated acti ``` - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` As outlined in [modes](project-configuration/modes.md), Lost Pixel can run in different modes or all of them simultaneously. You would need to build the respective provider and serve it in the action to make it available for the Lost Pixel, e.g. build & serve storybook, build & serve ladle, build & serve next app @@ -36,7 +36,7 @@ jobs: run: npm run build-storybook - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 ``` {% endcode %} @@ -47,7 +47,7 @@ Using Lost Pixel in **Platform Mode,** you need to provide the `LOST_PIXEL_API_K ``` - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 env: LOST_PIXEL_API_KEY: ${{ secrets.LOST_PIXEL_API_KEY }} ``` diff --git a/examples/example-storybook-v6.4/workflows/ci.yml b/examples/example-storybook-v6.4/workflows/ci.yml index 57c2ea7e..98fbc2cb 100644 --- a/examples/example-storybook-v6.4/workflows/ci.yml +++ b/examples/example-storybook-v6.4/workflows/ci.yml @@ -21,4 +21,4 @@ jobs: run: npm run build-storybook - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 diff --git a/examples/example-storybook-v6.5-storystore-v7/workflows/ci.yml b/examples/example-storybook-v6.5-storystore-v7/workflows/ci.yml index 57c2ea7e..98fbc2cb 100644 --- a/examples/example-storybook-v6.5-storystore-v7/workflows/ci.yml +++ b/examples/example-storybook-v6.5-storystore-v7/workflows/ci.yml @@ -21,4 +21,4 @@ jobs: run: npm run build-storybook - name: Lost Pixel - uses: lost-pixel/lost-pixel@v3.15.1 + uses: lost-pixel/lost-pixel@v3.16.0 diff --git a/package-lock.json b/package-lock.json index 29bb0f24..9edd9163 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "lost-pixel", - "version": "3.15.1", + "version": "3.16.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "lost-pixel", - "version": "3.15.1", + "version": "3.16.0", "license": "MIT", "dependencies": { "@types/xml2js": "^0.4.14", diff --git a/package.json b/package.json index a90a234f..fc433cba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lost-pixel", - "version": "3.15.1", + "version": "3.16.0", "description": "GitHub Action for Lost Pixel integration", "main": "dist/", "bin": "dist/bin.js",