Skip to content

Commit d9d5676

Browse files
build(deps): bump actions/checkout from 2.4.0 to 3 (#639)
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.4.0 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2.4.0...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>
1 parent 8a26e31 commit d9d5676

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
CMAKE_INSTALL_PREFIX: "${{ github.workspace }}/install"
1313
steps:
1414
- name: Checkout Sample-Server
15-
uses: actions/checkout@v2.4.0
15+
uses: actions/checkout@v3
1616
with:
1717
path: Sample-Server
1818
submodules: recursive
@@ -52,7 +52,7 @@ jobs:
5252
IS_NOT_PR: "${{ !github.head_ref && true }}"
5353
steps:
5454
- name: Checkout Sample-Server
55-
uses: actions/checkout@v2.4.0
55+
uses: actions/checkout@v3
5656
with:
5757
path: Sample-Server
5858
submodules: recursive

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
steps:
3939
- name: Checkout Sample-Server
40-
uses: actions/checkout@v2.4.0
40+
uses: actions/checkout@v3
4141
with:
4242
submodules: recursive
4343

.github/workflows/linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
# Checkout the code base #
3939
##########################
4040
- name: Checkout Code
41-
uses: actions/checkout@v2.4.0
41+
uses: actions/checkout@v3
4242
with:
4343
# Full git history is needed to get a proper list of changed files within `super-linter`
4444
fetch-depth: 0
@@ -59,7 +59,7 @@ jobs:
5959
name: Lint Code Base (cmake-format-lint)
6060
runs-on: ubuntu-latest
6161
steps:
62-
- uses: actions/checkout@v2.4.0
62+
- uses: actions/checkout@v3
6363
- name: Format CMake files
6464
id: cmake-format
6565
uses: PuneetMatharu/cmake-format-lint-action@v1.0.0

.github/workflows/rebase.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Checkout the latest code
12-
uses: actions/checkout@v2.4.0
12+
uses: actions/checkout@v3
1313
with:
1414
token: ${{ secrets.REBASE_PAT }}
1515
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo

0 commit comments

Comments
 (0)