dependabot[bot] dependabot[bot] commited on
Commit
a5a1760
1 Parent(s): c8a5899

Bump actions/checkout from 2 to 3 (#6881)

Browse files

Bumps [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] <support@github.com>

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@v2
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@v2
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@v2
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