From b437ae8df3401e490e938eeab1899c83b7f48b8e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Feb 2024 09:42:40 +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/codeql-analysis.yml | 2 +- .github/workflows/db.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/linter.yml | 2 +- .github/workflows/scrum.yml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 128f258..87dd91a 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/db.yml b/.github/workflows/db.yml index 4174844..b334469 100644 --- a/.github/workflows/db.yml +++ b/.github/workflows/db.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Apply all migrations on empty DB run: docker compose up --exit-code-from flyway - name: Print the flyway logs, if needed later diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 8dc1e4b..2709be8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -10,7 +10,7 @@ jobs: environment: Test steps: - name: Check out the code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run migrate run: docker-compose run flyway - name: Print the flyway logs, if needed later diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index b9621cd..427ce16 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -38,7 +38,7 @@ jobs: # Checkout the code base # ########################## - name: Checkout Code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: # Full git history is needed to get a proper list of changed files within `super-linter` fetch-depth: 0 diff --git a/.github/workflows/scrum.yml b/.github/workflows/scrum.yml index c0ac18c..2c0fa72 100644 --- a/.github/workflows/scrum.yml +++ b/.github/workflows/scrum.yml @@ -14,7 +14,7 @@ jobs: run: echo "date=$(date -u '+%B %d %Y')" >> $GITHUB_ENV - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Create issue id: issue-bot