Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 3dad005

Browse files
authoredJan 5, 2024
Bump actions/checkout from 2 to 4
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 87b6989 commit 3dad005

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎.github/workflows/ci-checks.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
java-version: ['8']
1818
fail-fast: false
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Set up Python ${{ matrix.python-version }}
2222
uses: actions/setup-python@v1
2323
with:
@@ -56,7 +56,7 @@ jobs:
5656
python-version: [3.7]
5757
fail-fast: false
5858
steps:
59-
- uses: actions/checkout@v2
59+
- uses: actions/checkout@v4
6060
- name: Set up Python ${{ matrix.python-version }}
6161
uses: actions/setup-python@v1
6262
with:
@@ -77,7 +77,7 @@ jobs:
7777
python-version: [3.7]
7878
fail-fast: false
7979
steps:
80-
- uses: actions/checkout@v2
80+
- uses: actions/checkout@v4
8181
- name: Set up Python ${{ matrix.python-version }}
8282
uses: actions/setup-python@v1
8383
with:

‎.github/workflows/dependabot-auto-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
if: ${{ github.actor == 'dependabot[bot]' && github.event.workflow_run.conclusion == 'success' }}
2020
steps:
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v4
2222
with:
2323
ref: ${{ github.event.workflow_run.head_branch }}
2424
- name: Auto-approve Dependabot PR

‎.github/workflows/release-code.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
max-parallel: 4
1414
fail-fast: false
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up Python ${{ matrix.python-version }}
1818
uses: actions/setup-python@v1
1919
with:

0 commit comments

Comments
 (0)
Please sign in to comment.