From 45574aca8a96b72abc3735867ac04ca96c198b72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 20:38:08 +0330 Subject: [PATCH] ci(deps): bump actions/checkout from 4.1.0 to 4.1.1 (#17) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [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.0...v4.1.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 4 ++-- .github/workflows/deploy.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 78c1f55..3a8f62f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: steps: # The sequence of tasks that make up a job. - name: Checking out repository code - uses: actions/checkout@v4.1.0 # Action for checking out a repo. + uses: actions/checkout@v4.1.1 # Action for checking out a repo. # Cache dependencies to speed up builds - name: Cache cargo dependencies @@ -85,7 +85,7 @@ jobs: steps: # Checkout the repository code - name: Checkout code - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: fetch-depth: 0 # Fetches all history for all branches and tags diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b34971c..c80bc33 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: # Check out current repository - name: Fetch Sources - uses: actions/checkout@v4.1.0 + uses: actions/checkout@v4.1.1 with: ref: ${{ github.event.release.tag_name }}