dependabot[bot]
dependabot[bot]
commited on
Bump actions/checkout from 2 to 3 (#6881)
Browse filesBumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [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/v2...v3)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
.github/workflows/ci-testing.yml
CHANGED
@@ -25,7 +25,7 @@ jobs:
|
|
25 |
# Timeout: https://stackoverflow.com/a/59076067/4521646
|
26 |
timeout-minutes: 60
|
27 |
steps:
|
28 |
-
- uses: actions/checkout@
|
29 |
- name: Set up Python ${{ matrix.python-version }}
|
30 |
uses: actions/setup-python@v3
|
31 |
with:
|
|
|
25 |
# Timeout: https://stackoverflow.com/a/59076067/4521646
|
26 |
timeout-minutes: 60
|
27 |
steps:
|
28 |
+
- uses: actions/checkout@v3
|
29 |
- name: Set up Python ${{ matrix.python-version }}
|
30 |
uses: actions/setup-python@v3
|
31 |
with:
|
.github/workflows/codeql-analysis.yml
CHANGED
@@ -22,7 +22,7 @@ jobs:
|
|
22 |
|
23 |
steps:
|
24 |
- name: Checkout repository
|
25 |
-
uses: actions/checkout@
|
26 |
|
27 |
# Initializes the CodeQL tools for scanning.
|
28 |
- name: Initialize CodeQL
|
|
|
22 |
|
23 |
steps:
|
24 |
- name: Checkout repository
|
25 |
+
uses: actions/checkout@v3
|
26 |
|
27 |
# Initializes the CodeQL tools for scanning.
|
28 |
- name: Initialize CodeQL
|
.github/workflows/rebase.yml
CHANGED
@@ -11,7 +11,7 @@ jobs:
|
|
11 |
runs-on: ubuntu-latest
|
12 |
steps:
|
13 |
- name: Checkout the latest code
|
14 |
-
uses: actions/checkout@
|
15 |
with:
|
16 |
token: ${{ secrets.ACTIONS_TOKEN }}
|
17 |
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|
|
|
11 |
runs-on: ubuntu-latest
|
12 |
steps:
|
13 |
- name: Checkout the latest code
|
14 |
+
uses: actions/checkout@v3
|
15 |
with:
|
16 |
token: ${{ secrets.ACTIONS_TOKEN }}
|
17 |
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
|