From ebbdfc6e091b014035459e26598d711584849b8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 10:40:48 +0000 Subject: [PATCH] Bump actions/checkout from 4.0.0 to 4.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.0.0 to 4.1.0. - [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/3df4ab11eba7bda6032a0b82a6bb43b11571feac...8ade135a41bc03ea155e62e844d188df1ea18608) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/autoTestPR.yml | 4 ++-- .github/workflows/presubmit.yml | 2 +- .github/workflows/runAqa.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/autoTestPR.yml b/.github/workflows/autoTestPR.yml index 458b4dc673b..6e3848144c8 100644 --- a/.github/workflows/autoTestPR.yml +++ b/.github/workflows/autoTestPR.yml @@ -40,11 +40,11 @@ jobs: run: | pip install lxml - name: checkout current repo - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 with: path: 'tests' - name: checkout TKG repo - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 with: repository: 'adoptium/TKG.git' ref: 'master' diff --git a/.github/workflows/presubmit.yml b/.github/workflows/presubmit.yml index d0171f0f71a..58c6e6e2cf4 100644 --- a/.github/workflows/presubmit.yml +++ b/.github/workflows/presubmit.yml @@ -41,7 +41,7 @@ jobs: Linter: runs-on: ubuntu-16.04 steps: - - uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 + - uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 - name: install dependencies run: | sudo apt-get update -y && \ diff --git a/.github/workflows/runAqa.yml b/.github/workflows/runAqa.yml index e38ded30f7e..a97d8d578ab 100644 --- a/.github/workflows/runAqa.yml +++ b/.github/workflows/runAqa.yml @@ -41,12 +41,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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 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@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 + uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0 with: repository: 'adoptium/TKG.git' ref: 'master'