Skip to content

Commit c703f87

Browse files
dependabot[bot]vrubezhny
authored andcommitted
Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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]>
1 parent dea2780 commit c703f87

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

.github/workflows/check-alizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
1414
- name: Check Out Code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Get latest Alizer version
1717
run: |
1818
echo "REPO_ALIZER_VERSION=$(cat src/tools.json | jq -r .alizer.version)" >> $GITHUB_ENV

.github/workflows/check-crc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1414
steps:
1515
- name: Check Out Code
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717
- name: Get latest CRC version
1818
run: |
1919
echo "REPO_CRC_VERSION=$(cat src/tools.json | jq -r .crc.crcVersion)" >> $GITHUB_ENV

.github/workflows/check-func.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
1414
- name: Check Out Code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Get latest FUNC version
1717
run: |
1818
echo "REPO_FUNC_VERSION=$(cat src/tools.json | jq -r .func.version)" >> $GITHUB_ENV

.github/workflows/check-helm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
1414
- name: Check Out Code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Get latest HELM version
1717
run: |
1818
echo "REPO_HELM_VERSION=$(cat src/tools.json | jq -r .helm.version)" >> $GITHUB_ENV

.github/workflows/check-oc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1313
steps:
1414
- name: Check Out Code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616
- name: Get latest OC version
1717
run: |
1818
echo "REPO_OC_VERSION=$(cat src/tools.json | jq -r .oc.version)" >> $GITHUB_ENV

.github/workflows/check-odo.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
last-release-version: ${{ steps.repo-last-commit-info.outputs.repo-last-release-version }}
1717
nightly-build-version: ${{ steps.repo-last-commit-info.outputs.repo-nightly-build-version }}
1818
steps:
19-
- uses: actions/checkout@v5
19+
- uses: actions/checkout@v6
2020
with:
2121
repository: '${{ env.TOOL_REPO }}'
2222
fetch-depth: 2
@@ -70,7 +70,7 @@ jobs:
7070
if: ${{ needs.check-odo.outputs.last-commit-id != '' && needs.check-pr.outputs.pr-exists == 0 && needs.check-nightly-build.outputs.nightly-build-exists != 0 }}
7171
steps:
7272
- name: Check Out Code
73-
uses: actions/checkout@v5
73+
uses: actions/checkout@v6
7474
- name: Update src/tools.json with latest odo version
7575
run: |
7676
jq --indent 4 '.odo.description = "ODO CLI tool"' src/tools.json \

.github/workflows/circular-dependency-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
# Steps represent a sequence of tasks that will be executed as part of the job
1414
steps:
1515
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717

1818
# Set up Node
1919
- name: Use Node.js 20

.github/workflows/continuous-integration-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# Steps represent a sequence of tasks that will be executed as part of the job
3030
steps:
3131
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
32-
- uses: actions/checkout@v5
32+
- uses: actions/checkout@v6
3333

3434
# Set up Node
3535
- name: Use Node.js ${{ matrix.node }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Checkout vscode-openshift-tools
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737
- name: Use Node.js
3838
uses: actions/setup-node@v6
3939
with:
@@ -86,7 +86,7 @@ jobs:
8686
needs: packaging-job
8787
steps:
8888
- name: Checkout vscode-openshift-tools
89-
uses: actions/checkout@v5
89+
uses: actions/checkout@v6
9090
- name: Use Node.js
9191
uses: actions/setup-node@v6
9292
with:

0 commit comments

Comments
 (0)