From adae858a8fd43f00671df22db246bdb74fa3d53a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 6 Sep 2023 06:33:04 +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/interface_deploy.yml | 2 +- .github/workflows/interface_test.yml | 4 ++-- .github/workflows/pdfgenerator_deploy.yml | 2 +- .github/workflows/pdfgenerator_test.yml | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/interface_deploy.yml b/.github/workflows/interface_deploy.yml index 607e7fa..2076646 100644 --- a/.github/workflows/interface_deploy.yml +++ b/.github/workflows/interface_deploy.yml @@ -13,7 +13,7 @@ jobs: steps: # This action requires an unshallow working copy, # so the following prerequisites are necessary: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/interface_test.yml b/.github/workflows/interface_test.yml index 4e7ae27..7bc7515 100644 --- a/.github/workflows/interface_test.yml +++ b/.github/workflows/interface_test.yml @@ -27,7 +27,7 @@ jobs: - 5434:5432 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # setup node in subdirectory : https://naomiaro.hashnode.dev/nodejs-ci-github-action - uses: actions/setup-node@v3 diff --git a/.github/workflows/pdfgenerator_deploy.yml b/.github/workflows/pdfgenerator_deploy.yml index 84e9fdf..ec3c9fc 100644 --- a/.github/workflows/pdfgenerator_deploy.yml +++ b/.github/workflows/pdfgenerator_deploy.yml @@ -14,7 +14,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/pdfgenerator_test.yml b/.github/workflows/pdfgenerator_test.yml index 338c106..d2da26e 100644 --- a/.github/workflows/pdfgenerator_test.yml +++ b/.github/workflows/pdfgenerator_test.yml @@ -11,7 +11,7 @@ jobs: name: Unit tests and lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-python@v4 with: @@ -32,7 +32,7 @@ jobs: name: Integration tests runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: docker/setup-buildx-action@v2