From 023f00864e7f79d254b247c864026e47adbf819c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 07:49:00 -0400 Subject: [PATCH] Bump actions/checkout from 3 to 4 (#1560) 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] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- .github/workflows/sonar.yml | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index ad0ca244e..d14a1729a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -34,7 +34,7 @@ jobs: name: build with jdk ${{matrix.java}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 name: checkout - uses: actions/setup-java@v3 @@ -76,7 +76,7 @@ jobs: name: verify javadocs runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 name: checkout - uses: actions/setup-java@v3 @@ -106,7 +106,7 @@ jobs: name: MicroProfile OpenAPI TCK ${{ matrix.tck-version }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 name: checkout - uses: actions/setup-java@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 425540b97..134551d86 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: github-token: ${{secrets.GITHUB_TOKEN}} metadata-file-path: '.github/project.yml' - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{secrets.RELEASE_TOKEN}} @@ -93,7 +93,7 @@ jobs: github-token: ${{secrets.GITHUB_TOKEN}} metadata-file-path: '.github/project.yml' - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 name: checkout with: ref: ${{ steps.metadata.outputs.current-version }} diff --git a/.github/workflows/sonar.yml b/.github/workflows/sonar.yml index 4aef54b37..ebb4d01aa 100644 --- a/.github/workflows/sonar.yml +++ b/.github/workflows/sonar.yml @@ -28,7 +28,7 @@ jobs: ## Checkout the source of the event that triggered this workflow, ## PR commit (pull_request event) or commit (push event). - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: ${{ github.event.workflow_run.head_repository.full_name }} ref: ${{ github.event.workflow_run.head_sha }}