From f578b77a76ef022f71513c0cc67be4166914d54d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 03:26:34 +0000 Subject: [PATCH] build(deps): bump the actions group with 5 updates (#101) Bumps the actions group with 5 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4.1.1` | `4.1.7` | | [nim-works/setup-nimskull](https://github.com/nim-works/setup-nimskull) | `0.1.0` | `0.1.2` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `4.1.4` | `4.1.8` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4.3.1` | `4.3.6` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4.0.4` | `4.0.5` | Updates `actions/checkout` from 4.1.1 to 4.1.7 - [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/v4.1.1...v4.1.7) Updates `nim-works/setup-nimskull` from 0.1.0 to 0.1.2 - [Release notes](https://github.com/nim-works/setup-nimskull/releases) - [Commits](https://github.com/nim-works/setup-nimskull/compare/0.1.0...0.1.2) Updates `actions/download-artifact` from 4.1.4 to 4.1.8 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v4.1.4...v4.1.8) Updates `actions/upload-artifact` from 4.3.1 to 4.3.6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4.3.1...v4.3.6) Updates `actions/deploy-pages` from 4.0.4 to 4.0.5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](https://github.com/actions/deploy-pages/compare/v4.0.4...v4.0.5) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: nim-works/setup-nimskull dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/download-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/deploy-pages dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bc50df4..89733a7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.7 with: path: nim-sys @@ -128,13 +128,13 @@ jobs: - name: Setup nimskull id: nimskull if: matrix.compiler.name == 'nimskull' - uses: nim-works/setup-nimskull@0.1.0 + uses: nim-works/setup-nimskull@0.1.2 with: nimskull-version: ${{ matrix.compiler.version }} - name: Fetch nimble source for nimskull if: matrix.compiler.name == 'nimskull' - uses: actions/checkout@v4.1.1 + uses: actions/checkout@v4.1.7 with: path: nimble repository: alaviss/nimble @@ -204,7 +204,7 @@ jobs: steps: - name: Download github-pages artifact if: needs.context.outputs.skip-reason == 'skip_after_successful_duplicate' - uses: actions/download-artifact@v4.1.4 + uses: actions/download-artifact@v4.1.8 with: name: github-pages path: page @@ -213,7 +213,7 @@ jobs: - name: Upload pages artifact if: needs.context.outputs.skip-reason == 'skip_after_successful_duplicate' - uses: actions/upload-artifact@v4.3.1 + uses: actions/upload-artifact@v4.3.6 with: name: github-pages path: page/artifact.tar @@ -222,7 +222,7 @@ jobs: - name: Deploy page id: deployment - uses: actions/deploy-pages@v4.0.4 + uses: actions/deploy-pages@v4.0.5 passed: needs: build