Skip to content

Commit 5849ce3

Browse files
Bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8636b10 commit 5849ce3

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/cmake.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
link: ["STATIC", "SHARED"]
2525
steps:
2626
- name: Checkout Drogon source code
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v6
2828
with:
2929
submodules: true
3030
fetch-depth: 0
@@ -73,7 +73,7 @@ jobs:
7373
osver: [14, 15]
7474
steps:
7575
- name: Checkout Drogon source code
76-
uses: actions/checkout@v4
76+
uses: actions/checkout@v6
7777
with:
7878
submodules: true
7979
fetch-depth: 0
@@ -156,7 +156,7 @@ jobs:
156156
CXX: ${{ matrix.compiler.cxx }}-${{ matrix.compiler.ver }}
157157
steps:
158158
- name: Checkout Drogon source code
159-
uses: actions/checkout@v4
159+
uses: actions/checkout@v6
160160
with:
161161
submodules: true
162162
fetch-depth: 0

.github/workflows/codeql.yml

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

4141
steps:
4242
- name: Checkout Drogon source code
43-
uses: actions/checkout@v4
43+
uses: actions/checkout@v6
4444
with:
4545
submodules: true
4646
fetch-depth: 0

.github/workflows/codespell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ jobs:
1010
codespell:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v6
1414
- run: sudo apt-get install -y codespell
1515
- run: codespell --ignore-words-list="coo,folx,ot,statics,xwindows,NotIn,aNULL," --skip="*.csp"

.github/workflows/cpp.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
format:
1313
runs-on: ubuntu-22.04
1414
steps:
15-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v6
1616

1717
- name: Install dos2unix
1818
run: sudo apt-get install -y dos2unix
@@ -32,7 +32,7 @@ jobs:
3232
cpplint:
3333
runs-on: ubuntu-latest
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636

3737
- name: Install cpplint
3838
run: pip install cpplint

.github/workflows/docker-publish.yml

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

1111
steps:
1212
- name: Check out code
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Log in to Docker Hub
1616
uses: docker/login-action@v3

0 commit comments

Comments
 (0)