Skip to content

Commit fdd05b7

Browse files
dependabot[bot]Allda
authored andcommitted
Bump actions/checkout from 6.0.1 to 6.0.2
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@8e8c483...de0fac2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 86ff2b4 commit fdd05b7

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/build-and-test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout repository
19-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
19+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2020
with:
2121
ref: ${{ github.event.pull_request.head.sha || github.sha }}
2222

@@ -63,7 +63,7 @@ jobs:
6363
else
6464
echo "tags=${{ github.sha }}">> $GITHUB_OUTPUT
6565
fi
66-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
66+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6767
with:
6868
ref: ${{ github.event.pull_request.head.sha || github.sha }}
6969

@@ -104,7 +104,7 @@ jobs:
104104
fail-fast: false
105105
runs-on: ubuntu-latest
106106
steps:
107-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
107+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
108108
with:
109109
ref: ${{ github.event.pull_request.head.sha || github.sha }}
110110

.github/workflows/build-signing-bundle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
bundle_image: ${{ steps.push-bundle.outputs.pullspec }}
2020

2121
steps:
22-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
22+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2323

2424
- name: Install tekton CLI
2525
id: install-deps

.github/workflows/deploy.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
needs:
2828
- prepare-env
2929
steps:
30-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
30+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3131
- name: Install dependencies
3232
run: |
3333
# Install python packages needed from ansible
@@ -56,7 +56,7 @@ jobs:
5656
env:
5757
SHORT_SHA: ${{needs.prepare-env.outputs.short_sha}}
5858
steps:
59-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
59+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
6060
- name: Install dependencies
6161
run: |
6262
# Install python packages needed from ansible
@@ -86,7 +86,7 @@ jobs:
8686
env:
8787
SHORT_SHA: ${{needs.prepare-env.outputs.short_sha}}
8888
steps:
89-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
89+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
9090
- name: Install dependencies
9191
run: |
9292
# Install python packages needed from ansible
@@ -118,7 +118,7 @@ jobs:
118118
- deploy-qa
119119
- deploy-dev
120120
steps:
121-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
121+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
122122
- name: Install dependencies
123123
run: |
124124
# Install python packages needed from ansible
@@ -147,7 +147,7 @@ jobs:
147147
environment:
148148
name: prod
149149
steps:
150-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
150+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
151151
- name: Install dependencies
152152
run: |
153153
# Install python packages needed from ansible
@@ -174,7 +174,7 @@ jobs:
174174
- prepare-env
175175
- configure-prod-cluster
176176
steps:
177-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
177+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
178178
- name: Install dependencies
179179
run: |
180180
# Install python packages needed from ansible
@@ -201,7 +201,7 @@ jobs:
201201
needs:
202202
- deploy-prod
203203
steps:
204-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
204+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
205205

206206
- name: Bump version and push tag
207207
id: tag_version

.github/workflows/documentation.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
documentation:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
- name: Generate docs
1717
run: |
1818
pipx install mkdocs

0 commit comments

Comments
 (0)