From 742c9367a68df93d1404f94834eac88466440c3a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Feb 2024 23:21:10 +0000 Subject: [PATCH] Bump the dev-dependencies group with 7 updates Bumps the dev-dependencies group with 7 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `2` | `4` | | [actions/setup-node](https://github.com/actions/setup-node) | `1` | `4` | | [actions/configure-pages](https://github.com/actions/configure-pages) | `3` | `4` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `1` | `3` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `2` | `4` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` | Updates `actions/checkout` from 2 to 4 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) Updates `actions/setup-node` from 1 to 4 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](https://github.com/actions/setup-node/compare/v1...v4) Updates `actions/configure-pages` from 3 to 4 - [Release notes](https://github.com/actions/configure-pages/releases) - [Commits](https://github.com/actions/configure-pages/compare/v3...v4) Updates `actions/upload-pages-artifact` from 1 to 3 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](https://github.com/actions/upload-pages-artifact/compare/v1...v3) Updates `actions/deploy-pages` from 2 to 4 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v2...v4) Updates `actions/upload-artifact` from 3 to 4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v3...v4) Updates `actions/download-artifact` from 3 to 4 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/setup-node dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/configure-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/upload-pages-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-major dependency-group: dev-dependencies ... Signed-off-by: dependabot[bot] --- .github/workflows/build_visual.yml | 4 ++-- .github/workflows/pages.yml | 6 +++--- .github/workflows/push_to_release.yml | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build_visual.yml b/.github/workflows/build_visual.yml index 4607a3e..11827c8 100644 --- a/.github/workflows/build_visual.yml +++ b/.github/workflows/build_visual.yml @@ -15,10 +15,10 @@ jobs: node-version: [20.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml index 1f5f984..110a001 100644 --- a/.github/workflows/pages.yml +++ b/.github/workflows/pages.yml @@ -47,7 +47,7 @@ jobs: working-directory: '${{ github.workspace }}/PowerBI-SPC-Docs/docs' - name: Setup Pages id: pages - uses: actions/configure-pages@v3 + uses: actions/configure-pages@v4 - name: Build with Jekyll # Outputs to the './_site' directory by default run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" @@ -55,7 +55,7 @@ jobs: JEKYLL_ENV: production - name: Upload artifact # Automatically uploads an artifact from the './_site' directory by default - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 with: path: "PowerBI-SPC-Docs/docs/_site/" @@ -69,4 +69,4 @@ jobs: steps: - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 + uses: actions/deploy-pages@v4 diff --git a/.github/workflows/push_to_release.yml b/.github/workflows/push_to_release.yml index 705f72e..155ac9f 100644 --- a/.github/workflows/push_to_release.yml +++ b/.github/workflows/push_to_release.yml @@ -15,10 +15,10 @@ jobs: - { node-version: 20.x, powerbi-api: 3.8.3 } steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.config.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.config.node-version }} @@ -54,7 +54,7 @@ jobs: shell: bash - name: Stash built visuals - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: packages path: dist/*.pbiviz @@ -65,7 +65,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Restore built packages - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: packages path: ./packages