Skip to content

Commit e2d12b6

Browse files
Bump actions/checkout from 4.1.1 to 4.1.2 (#5140)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@b4ffde6...9bb5618) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 802a3ed commit e2d12b6

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.github/workflows/autoTestPR.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
run: |
1919
pip install lxml
2020
- name: checkout current repo
21-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
21+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
2222
with:
2323
path: 'tests'
2424
- name: checkout TKG repo
25-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
25+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
2626
with:
2727
repository: 'adoptium/TKG.git'
2828
ref: 'master'

.github/workflows/directoriesFilesChangePR.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
outputs:
1616
buildLists: ${{ steps.locations_parse.outputs.build_lists }}
1717
steps:
18-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
18+
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
1919
- uses: jitterbit/get-changed-files@v1
2020
id: get_change
2121
continue-on-error: true
@@ -38,7 +38,7 @@ jobs:
3838
build_list: ${{ fromJson(needs.getBuildLists.outputs.buildLists) }}
3939
impl: [hotspot, openj9]
4040
steps:
41-
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
41+
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
4242
- uses: AdoptOpenJDK/install-jdk@v1
4343
with:
4444
version: ${{ matrix.version }}

.github/workflows/disabledTestsLinter.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
13+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
1414

1515
- name: Install dependencies
1616
run: |

.github/workflows/parse-issues.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
python-version: 3.8
2121
- name: checkout current repo
22-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
22+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
2323
- name: install reqs
2424
run: |
2525
pip install -r scripts/disabled_tests/requirements.txt

.github/workflows/runAqa.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919
id: workflow_run_info
2020
# Checkout current repo to access the repo-specific config file `.github/workflows/runAqaConfig.json`
2121
- name: Checkout current repo
22-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
22+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
2323
with:
2424
path: 'main'
2525
# Checkout the main TKG repo to access the shared script `scripts/testRepo/runAqaArgParse.py`
2626
- name: Checkout main TKG repo
27-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
27+
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
2828
with:
2929
repository: 'adoptium/TKG.git'
3030
ref: 'master'

0 commit comments

Comments
 (0)