Skip to content

Commit 3cd7e49

Browse files
authored
Merge pull request #163 from orange-cloudfoundry/dependabot/github_actions/actions/checkout-6.0.1
github-action: bump actions/checkout from 5.0.0 to 6.0.1
2 parents ae270b0 + 68585a6 commit 3cd7e49

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/build-image-base.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
access_token: ${{ secrets.GITHUB_TOKEN }}
4949
- name: Checkout
50-
uses: actions/checkout@v5
50+
uses: actions/checkout@v6.0.1
5151
with:
5252
submodules: true
5353
- name: Log in to ghcr.io Container registry

.github/workflows/docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
permissions:
2121
packages: write
2222
steps:
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6.0.1
2424
- uses: ruby/setup-ruby@v1
2525
with:
2626
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
@@ -212,7 +212,7 @@ jobs:
212212
runs-on: ubuntu-latest
213213
needs: [ check_published_images ]
214214
steps:
215-
- uses: actions/checkout@v5
215+
- uses: actions/checkout@v6.0.1
216216
with:
217217
ref: main
218218
if: ${{ github.ref_name == 'main' }}

.github/workflows/lint_on_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
with:
2121
access_token: ${{ secrets.GITHUB_TOKEN }}
2222
- name: Checkout Code
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6.0.1
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/tag-docker-image.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
packages: write
2020
contents: write
2121
steps:
22-
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
22+
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
2323
- name: Login to DockerHub
2424
uses: docker/login-action@v3
2525
with:

0 commit comments

Comments
 (0)