Skip to content

Commit e932f01

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 31c113b commit e932f01

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
outputs:
1818
sha256: ${{ steps.checksums.outputs.sha256 }}
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@v6
2121
with:
2222
fetch-depth: 0 # deep fetch for better sonarcloud analysis
2323
- uses: actions/setup-java@v5
@@ -75,7 +75,7 @@ jobs:
7575
needs: [build]
7676
if: github.repository_owner == 'cryptomator' && (startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[deploy]'))
7777
steps:
78-
- uses: actions/checkout@v5
78+
- uses: actions/checkout@v6
7979
- uses: actions/setup-java@v5
8080
with:
8181
distribution: 'temurin'
@@ -111,7 +111,7 @@ jobs:
111111
needs: [build]
112112
if: github.repository_owner == 'cryptomator' && (startsWith(github.ref, 'refs/tags/') || contains(github.event.head_commit.message, '[deploy]'))
113113
steps:
114-
- uses: actions/checkout@v5
114+
- uses: actions/checkout@v6
115115
- uses: actions/setup-java@v5
116116
with:
117117
java-version: ${{ env.JAVA_VERSION }}

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
security-events: write
2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 2
2525
- name: Set up Java

0 commit comments

Comments
 (0)