Skip to content

Commit ae0f54a

Browse files
dependabot[bot]BLumia
authored andcommitted
chore(deps): bump actions/checkout from 2 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v2...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 682a438 commit ae0f54a

19 files changed

+29
-29
lines changed

.github/workflows/auto-integration-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
pr-auto-integration:
4444
runs-on: ubuntu-latest
4545
steps:
46-
- uses: actions/checkout@v4
46+
- uses: actions/checkout@v5
4747
with:
4848
repository: "${{ inputs.organization }}/${{ inputs.repository }}"
4949

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
owner: ${{ github.repository_owner }}
3535

3636
- name: 检出代码
37-
uses: actions/checkout@v4
37+
uses: actions/checkout@v5
3838
with:
3939
fetch-depth: 0
4040
token: ${{ steps.auth.outputs.token }}

.github/workflows/auto-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
auto_tag:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
ref: ${{ github.event.pull_request.head.sha }}
2525
persist-credentials: false

.github/workflows/backup-all-repos-to-gitee.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ jobs:
99
if: github.repository_owner == 'linuxdeepin'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v5
1313
- run: bash ".github/workflows/backup-all-repos-to-gitee.bash" linuxdeepin ${{ secrets.GITEE_SYNC_TOKEN }}

.github/workflows/backup-all-repos-to-gitlabwh.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: github.repository_owner == 'linuxdeepin'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v2
12+
- uses: actions/checkout@v5
1313
with:
1414
repository: "linuxdeepin/jenkins-bridge-client"
1515
path: jenkins-bridge-client
@@ -18,5 +18,5 @@ jobs:
1818
cd $GITHUB_WORKSPACE/jenkins-bridge-client
1919
go build .
2020
sudo install -Dvm755 jenkins-bridge-client -t /usr/bin/
21-
- uses: actions/checkout@v2
21+
- uses: actions/checkout@v5
2222
- run: bash ".github/workflows/backup-all-repos-to-gitlabwh.bash" linuxdeepin ${{ secrets.BridgeToken }}

.github/workflows/backup-to-gitlabwh.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: backup-to-gitlab
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v5
1515
with:
1616
repository: "linuxdeepin/jenkins-bridge-client"
1717
path: jenkins-bridge-client

.github/workflows/build-deb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Print Environment
2020
run: export
2121

22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v5
2323
with:
2424
repository: "linuxdeepin/jenkins-bridge-client"
2525
path: jenkins-bridge-client

.github/workflows/build-distribution.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ jobs:
2222
outputs:
2323
result: ${{ steps.result.outputs.RESULT }}
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
if: ${{ github.event.pull_request.head.sha }}
2727
with:
2828
ref: ${{ github.event.pull_request.head.sha }}
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v5
3030
if: ${{ github.event_name == 'push' }}
3131
with:
3232
fetch-depth: 0
@@ -62,11 +62,11 @@ jobs:
6262
ssh-private-key: ${{ secrets.BUILD_SSH_PRIVATE_KEY }}
6363
- run: git config --global user.email "ci@deepin.org"
6464
- run: git config --global user.name "deepin-ci"
65-
- uses: actions/checkout@v4
65+
- uses: actions/checkout@v5
6666
if: ${{ github.event.pull_request.head.sha }}
6767
with:
6868
ref: ${{ github.event.pull_request.head.sha }}
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
if: ${{ github.event_name == 'push' }}
7171
with:
7272
fetch-depth: 0
@@ -157,11 +157,11 @@ jobs:
157157
needs: [debian-setup]
158158
runs-on: ubuntu-latest
159159
steps:
160-
- uses: actions/checkout@v4
160+
- uses: actions/checkout@v5
161161
if: ${{ github.event.pull_request.head.sha }}
162162
with:
163163
ref: ${{ github.event.pull_request.head.sha }}
164-
- uses: actions/checkout@v4
164+
- uses: actions/checkout@v5
165165
if: ${{ github.event_name == 'push' }}
166166
with:
167167
fetch-depth: 0
@@ -361,11 +361,11 @@ jobs:
361361
continue-on-error: true
362362
runs-on: ubuntu-latest
363363
steps:
364-
- uses: actions/checkout@v4
364+
- uses: actions/checkout@v5
365365
if: ${{ github.event.pull_request.head.sha }}
366366
with:
367367
ref: ${{ github.event.pull_request.head.sha }}
368-
- uses: actions/checkout@v4
368+
- uses: actions/checkout@v5
369369
if: ${{ github.event_name == 'push' }}
370370
with:
371371
fetch-depth: 0

.github/workflows/build-linglong.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Print Environment
2020
run: export
2121

22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v5
2323
with:
2424
repository: "linuxdeepin/jenkins-bridge-client"
2525
path: jenkins-bridge-client

.github/workflows/commitlint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Fetch code
10-
uses: actions/checkout@v4
10+
uses: actions/checkout@v5
1111
with:
1212
ref: ${{ github.event.pull_request.head.sha }}
1313
fetch-depth: 0

0 commit comments

Comments
 (0)