Skip to content

Commit e06d808

Browse files
deps(actions): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...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 69a8fdd commit e06d808

7 files changed

Lines changed: 12 additions & 12 deletions

.github/workflows/image-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
echo arch="arm64" >> $GITHUB_ENV
3636
fi
3737
- name: Checkout
38-
uses: actions/checkout@v4
38+
uses: actions/checkout@v6
3939
- name: Docker Build
4040
env:
4141
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ${{matrix.runners}}
5858
steps:
5959
- name: Checkout
60-
uses: actions/checkout@v4
60+
uses: actions/checkout@v6
6161
- name: Set branch environment variable
6262
run: |
6363
BRANCH_NAME=${{ github.ref }}
@@ -117,7 +117,7 @@ jobs:
117117
runs-on: ubuntu-22.04
118118
steps:
119119
- name: Checkout
120-
uses: actions/checkout@v4
120+
uses: actions/checkout@v6
121121
- name: Set branch environment variable
122122
run: |
123123
BRANCH_NAME=${{ github.ref }}
@@ -184,7 +184,7 @@ jobs:
184184
if: github.ref == 'refs/heads/main'
185185
steps:
186186
- name: Checkout
187-
uses: actions/checkout@v4
187+
uses: actions/checkout@v6
188188
- name: Login to Quay.io
189189
uses: docker/login-action@v2
190190
with:

.github/workflows/pull-request-check-licenses.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: ${{ github.base_ref == 'main' }}
1919
steps:
2020
- name: Checkout che-code source code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
- name: Check che-activity-tracker dependencies usage restrictions
2323
run: |
2424
docker run --rm -t \

.github/workflows/pull-request-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-22.04
1818
steps:
1919
- name: Checkout che-code source code
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121
- name: Install jq
2222
uses: dcarbone/install-jq-action@v3
2323
with:
@@ -53,7 +53,7 @@ jobs:
5353
echo arch="arm64" >> $GITHUB_ENV
5454
fi
5555
- name: Checkout che-code source code
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v6
5757
- name: Cleanup docker images
5858
run: docker system prune -af
5959
- name: Compile che-code
@@ -90,7 +90,7 @@ jobs:
9090
echo arch="arm64" >> $GITHUB_ENV
9191
fi
9292
- name: Checkout che-code source code
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v6
9494
- name: Cleanup docker images
9595
run: docker system prune -af
9696
- name: Download editor artifacts

.github/workflows/rebase-insiders.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
token: ${{ secrets.CHE_INCUBATOR_BOT_TOKEN }}

.github/workflows/rebase-release-branch.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-22.04
2323
steps:
2424
- name: Checkout
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626
with:
2727
fetch-depth: 0
2828
token: ${{ secrets.CHE_INCUBATOR_BOT_TOKEN }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
steps:
2828
-
2929
name: "Checkout Che Code source code"
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v6
3131
with:
3232
token: ${{ secrets.CHE_INCUBATOR_BOT_TOKEN }}
3333
-

.github/workflows/smoke-test-pr-check.yaml

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

3030
- name: Checkout che-code source code
31-
uses: actions/checkout@v4
31+
uses: actions/checkout@v6
3232

3333
- name: Prepare Che-Code Dockerfile ( remove tests )
3434
run: |

0 commit comments

Comments
 (0)