Skip to content

Commit 4d68ca7

Browse files
dependabot[bot]justin-stephenson
authored andcommitted
ci: 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] <[email protected]> Reviewed-by: Justin Stephenson <[email protected]>
1 parent 8942d30 commit 4d68ca7

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

.github/workflows/accepted.yml

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

3030
steps:
3131
- name: Checkout Repository
32-
uses: actions/checkout@v4
32+
uses: actions/checkout@v6
3333
with:
3434
# Fetch the entire history of the repository
3535
# This is necessary for a successful git push

.github/workflows/analyze-target.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
with:
1818
ref: ${{ github.event.pull_request.head.sha }}
1919
persist-credentials: false

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
contents: read
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Install dependencies
2323
id: dependencies
@@ -62,7 +62,7 @@ jobs:
6262
runs-on: ubuntu-latest
6363
steps:
6464
- name: Repository checkout
65-
uses: actions/checkout@v5
65+
uses: actions/checkout@v6
6666
- uses: cross-platform-actions/[email protected]
6767
with:
6868
operating_system: 'freebsd'

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
matrix: ${{ steps.matrix.outputs.matrix }}
1818
steps:
1919
- name: Checkout sources
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Get matrix
2323
id: matrix
@@ -35,7 +35,7 @@ jobs:
3535
contents: read
3636
steps:
3737
- name: Checkout repository
38-
uses: actions/checkout@v5
38+
uses: actions/checkout@v6
3939
with:
4040
path: sssd
4141

@@ -109,7 +109,7 @@ jobs:
109109
python-version: '3.x'
110110

111111
- name: Checkout sssd repository
112-
uses: actions/checkout@v5
112+
uses: actions/checkout@v6
113113
with:
114114
path: sssd
115115

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
ref: ${{ github.event.pull_request.head.sha }}
3030
persist-credentials: false

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
pull-requests: read
2121
steps:
2222
- name: Checkout repository
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
path: sssd
2626

.github/workflows/static-code-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
security-events: write
1818
steps:
1919
- name: Checkout repository
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121

2222
- name: Install dependencies
2323
id: dependencies
@@ -61,7 +61,7 @@ jobs:
6161
python-version: '3.x'
6262

6363
- name: Checkout repository
64-
uses: actions/checkout@v5
64+
uses: actions/checkout@v6
6565

6666
- name: Setup virtual environment
6767
working-directory: ./src/tests/system
@@ -113,7 +113,7 @@ jobs:
113113
python-version: 3.x
114114

115115
- name: Checkout repository
116-
uses: actions/checkout@v5
116+
uses: actions/checkout@v6
117117

118118
- name: Run pre-commit checks
119119
uses: pre-commit/[email protected]

0 commit comments

Comments
 (0)