From 117c82037d6ac712789e08e577bfe12f55af6e68 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Sep 2023 14:47:46 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/build-and-release.yaml | 6 +++--- .github/workflows/build-docs.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-and-release.yaml b/.github/workflows/build-and-release.yaml index eb7796c..6fb7fd7 100644 --- a/.github/workflows/build-and-release.yaml +++ b/.github/workflows/build-and-release.yaml @@ -16,7 +16,7 @@ jobs: job_status: ${{ job.status }} steps: - name: Checkout project - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create Release id: create_release @@ -49,7 +49,7 @@ jobs: steps: - name: Checkout project - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup python uses: actions/setup-python@v4 @@ -164,7 +164,7 @@ jobs: steps: - name: Checkout project on gh-pages - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: 'gh-pages' token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index 459496b..1798eed 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout project - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: 'gh-pages' token: ${{ secrets.GITHUB_TOKEN }}