Skip to content

Commit e715a47

Browse files
Bump actions/checkout from 5 to 6 in the github-actions group
Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `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 dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent e659f69 commit e715a47

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/analysis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout Source
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
ref: ${{ github.event.pull_request.head.sha || github.ref }}
2323

@@ -31,7 +31,7 @@ jobs:
3131
runs-on: ubuntu-latest
3232
steps:
3333
- name: Checkout Source
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
ref: ${{ github.event.pull_request.head.sha || github.ref }}
3737
fetch-depth: 0
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Checkout Source
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
ref: ${{ github.event.pull_request.head.sha || github.ref }}
5252

@@ -74,12 +74,12 @@ jobs:
7474

7575
steps:
7676
- name: Checkout CLI Core Source
77-
uses: actions/checkout@v5
77+
uses: actions/checkout@v6
7878
with:
7979
ref: ${{ github.event.pull_request.head.sha || github.ref }}
8080

8181
- name: Checkout ${{ matrix.repo }} Source - ${{ matrix.branch }} branch
82-
uses: actions/checkout@v5
82+
uses: actions/checkout@v6
8383
with:
8484
repository: jfrog/${{ matrix.repo }}
8585
ref: ${{ matrix.branch }}

.github/workflows/dependabot-auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository == 'jfrog/jfrog-cli-core'
1515
steps:
1616
- name: Checkout PR code
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v6
1818
with:
1919
ref: ${{ github.event.pull_request.head.sha }}
2020
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
JFROG_CLI_LOG_LEVEL: "DEBUG"
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
ref: ${{ github.event.pull_request.head.sha || github.ref }}
2929

.github/workflows/update-jf-dependencies.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
run: echo "timestamp=$(date +%Y%m%d%H%M%S)" >> $GITHUB_OUTPUT
1818

1919
- name: Checkout main branch
20-
uses: actions/checkout@v5
20+
uses: actions/checkout@v6
2121
with:
2222
ref: master
2323
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)