From e5ac5fb364cbd88874c50bc637007c58b714efbc Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Oct 2023 10:01:54 -0400 Subject: [PATCH] Bump actions/checkout from 4.1.0 to 4.1.1 (#4819) Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.0 to 4.1.1. - [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/8ade135a41bc03ea155e62e844d188df1ea18608...b4ffde65f46336ab88eb53be808477a3936bae11) --- 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/parse-issues.yml | 2 +- .github/workflows/runAqa.yml | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/autoTestPR.yml b/.github/workflows/autoTestPR.yml index 7db69d64dd..b75ff09f11 100644 --- a/.github/workflows/autoTestPR.yml +++ b/.github/workflows/autoTestPR.yml @@ -18,11 +18,11 @@ jobs: run: | pip install lxml - name: checkout current repo - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: path: 'tests' - name: checkout TKG repo - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: repository: 'adoptium/TKG.git' ref: 'master' diff --git a/.github/workflows/directoriesFilesChangePR.yml b/.github/workflows/directoriesFilesChangePR.yml index 9e5926396a..105b123d8a 100644 --- a/.github/workflows/directoriesFilesChangePR.yml +++ b/.github/workflows/directoriesFilesChangePR.yml @@ -15,7 +15,7 @@ jobs: outputs: buildLists: ${{ steps.locations_parse.outputs.build_lists }} steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - uses: jitterbit/get-changed-files@v1 id: get_change continue-on-error: true @@ -38,7 +38,7 @@ jobs: build_list: ${{ fromJson(needs.getBuildLists.outputs.buildLists) }} impl: [hotspot, openj9] steps: - - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - uses: AdoptOpenJDK/install-jdk@v1 with: version: ${{ matrix.version }} diff --git a/.github/workflows/parse-issues.yml b/.github/workflows/parse-issues.yml index 3d4a62c660..8448e7cd64 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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 - 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 512057cc24..96fa597a73 100644 --- a/.github/workflows/runAqa.yml +++ b/.github/workflows/runAqa.yml @@ -19,12 +19,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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 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@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 + uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 with: repository: 'adoptium/TKG.git' ref: 'master'