From df8eff5726d6f26f7745267508bb11b92e527081 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 16:09:44 +1300 Subject: [PATCH] Bump actions/checkout from 4.2.1 to 4.2.2 (#5717) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.2.1 to 4.2.2. - [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/eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871...11bd71901bbe5b1630ceea73d27597364c9af683) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/autoTestPR.yml | 4 ++-- .github/workflows/directoriesFilesChangePR.yml | 4 ++-- .github/workflows/disabledTestsLinter.yml | 2 +- .github/workflows/parse-issues.yml | 2 +- .github/workflows/runAqa.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/autoTestPR.yml b/.github/workflows/autoTestPR.yml index 69388c9e5b..93652f8580 100644 --- a/.github/workflows/autoTestPR.yml +++ b/.github/workflows/autoTestPR.yml @@ -21,11 +21,11 @@ jobs: run: | pip install lxml - name: checkout current repo - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: path: 'tests' - name: checkout TKG repo - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: repository: 'adoptium/TKG.git' ref: 'master' diff --git a/.github/workflows/directoriesFilesChangePR.yml b/.github/workflows/directoriesFilesChangePR.yml index d82603f5d5..c39581a7c1 100644 --- a/.github/workflows/directoriesFilesChangePR.yml +++ b/.github/workflows/directoriesFilesChangePR.yml @@ -14,7 +14,7 @@ jobs: outputs: buildLists: ${{ steps.locations_parse.outputs.build_lists }} steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: jitterbit/get-changed-files@v1 id: get_change continue-on-error: true @@ -37,7 +37,7 @@ jobs: build_list: ${{ fromJson(needs.getBuildLists.outputs.buildLists) }} impl: [hotspot, openj9] steps: - - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - uses: AdoptOpenJDK/install-jdk@v1 with: version: ${{ matrix.version }} diff --git a/.github/workflows/disabledTestsLinter.yml b/.github/workflows/disabledTestsLinter.yml index adff80e055..f7d3109564 100644 --- a/.github/workflows/disabledTestsLinter.yml +++ b/.github/workflows/disabledTestsLinter.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Install dependencies run: | diff --git a/.github/workflows/parse-issues.yml b/.github/workflows/parse-issues.yml index 7586db12f9..1f2de99e2e 100644 --- a/.github/workflows/parse-issues.yml +++ b/.github/workflows/parse-issues.yml @@ -19,7 +19,7 @@ jobs: with: python-version: 3.8 - name: checkout current repo - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: install reqs run: | pip install -r scripts/disabled_tests/requirements.txt diff --git a/.github/workflows/runAqa.yml b/.github/workflows/runAqa.yml index 8d01010251..09415bcd44 100644 --- a/.github/workflows/runAqa.yml +++ b/.github/workflows/runAqa.yml @@ -22,12 +22,12 @@ jobs: id: workflow_run_info # Checkout current repo to access the repo-specific config file `.github/workflows/runAqaConfig.json` - name: Checkout current repo - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: path: 'main' # Checkout the main TKG repo to access the shared script `scripts/testRepo/runAqaArgParse.py` - name: Checkout main TKG repo - uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1 + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: repository: 'adoptium/TKG.git' ref: 'master'