From 08fe51b4f0401f9d2ef0c497e2278cad571d8f6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 08:35:14 +0200 Subject: [PATCH] chore(deps): bump actions/checkout from 3 to 4 (#67) 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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/_dependency-check.yml | 2 +- .github/workflows/bump-version.yaml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/dependency-check.yml | 4 ++-- .github/workflows/release-component.yml | 6 +++--- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/_dependency-check.yml b/.github/workflows/_dependency-check.yml index 39c3405..933fea1 100644 --- a/.github/workflows/_dependency-check.yml +++ b/.github/workflows/_dependency-check.yml @@ -14,7 +14,7 @@ jobs: continue-on-error: false if: ${{ github.event_name == 'pull_request' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: 'Check Allowed Licenses' uses: actions/dependency-review-action@v3 with: diff --git a/.github/workflows/bump-version.yaml b/.github/workflows/bump-version.yaml index 2a25b57..7f6945a 100644 --- a/.github/workflows/bump-version.yaml +++ b/.github/workflows/bump-version.yaml @@ -13,7 +13,7 @@ jobs: name: 'Update snapshot version' runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/bump-version name: Bump version with: diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 0ca82c3..7c8a1ee 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -17,7 +17,7 @@ jobs: # https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/setup-build # Initializes the CodeQL tools for scanning. diff --git a/.github/workflows/dependency-check.yml b/.github/workflows/dependency-check.yml index 201af8e..c74d634 100644 --- a/.github/workflows/dependency-check.yml +++ b/.github/workflows/dependency-check.yml @@ -8,7 +8,7 @@ jobs: continue-on-error: false if: ${{ github.event_name == 'pull_request' }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: 'Check Allowed Licenses' uses: actions/dependency-review-action@v3 with: @@ -26,7 +26,7 @@ jobs: Dash-Verify-Licenses: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: eclipse-edc/.github/.github/actions/setup-build@main - name: Download latest Eclipse Dash run: | diff --git a/.github/workflows/release-component.yml b/.github/workflows/release-component.yml index ce07fe0..b2d51ba 100644 --- a/.github/workflows/release-component.yml +++ b/.github/workflows/release-component.yml @@ -14,7 +14,7 @@ jobs: Prepare-Release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # create tag on the current branch using GitHub's own API - name: Create tag on current branch (main) @@ -49,7 +49,7 @@ jobs: permissions: contents: write steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: main - name: Create GitHub Release @@ -67,7 +67,7 @@ jobs: needs: [ Prepare-Release, GitHub-Release ] runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./.github/actions/bump-version with: target_branch: "main"