Skip to content

Commit 8d9447e

Browse files
Bump actions/checkout from 6.0.1 to 6.0.2 in /github/workflows ChrisCarini/github-repo-files-sync/pull/336; Don't persist credentials in update-gradle-wrapper.yml. (#591)
* Bump actions/checkout from 6.0.1 to 6.0.2 in /github/workflows ChrisCarini/github-repo-files-sync#336 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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Don't persist credentials in `update-gradle-wrapper.yml`. See gradle-update/update-gradle-wrapper-action#988 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 7bec319 commit 8d9447e

File tree

8 files changed

+13
-11
lines changed

8 files changed

+13
-11
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
# Check out current repository
4444
- name: Fetch Sources
45-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
45+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
4646
timeout-minutes: 1
4747

4848
# Setup Java environment for the next steps
@@ -84,7 +84,7 @@ jobs:
8484

8585
# Check out current repository
8686
- name: Fetch Sources
87-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
87+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
8888
timeout-minutes: 1
8989

9090
# Setup Java environment for the next steps
@@ -146,7 +146,7 @@ jobs:
146146

147147
# Check out current repository
148148
- name: Fetch Sources
149-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
149+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
150150
timeout-minutes: 1
151151

152152
# Remove old release drafts by using the curl request for the available releases with draft flag

.github/workflows/compatibility.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131

3232
steps:
3333
- name: Check out repository
34-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
34+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3535
timeout-minutes: 1
3636

3737
- name: Setup Java

.github/workflows/dependency-submission-and-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
# Check out current repository
1717
- name: Fetch Sources
18-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
18+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1919
timeout-minutes: 1
2020

2121
# Setup Java

.github/workflows/files-changed.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
changed_files: ${{ steps.changes.outputs.changed_files }}
5656
steps:
5757
- name: Check out repository
58-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
58+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5959
timeout-minutes: 1
6060

6161
- uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
# Check out current repository
1919
- name: Fetch Sources
20-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
20+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2121
timeout-minutes: 1
2222
with:
2323
ref: ${{ github.event.release.tag_name }}

.github/workflows/scorecards-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: "Checkout code"
35-
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
35+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
3636
timeout-minutes: 1
3737
with:
3838
persist-credentials: false

.github/workflows/update-gradle-wrapper.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,10 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
15+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1616
timeout-minutes: 1
17+
with:
18+
persist-credentials: false
1719

1820
- name: Setup Java
1921
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
@@ -30,7 +32,7 @@ jobs:
3032
merge-method: SQUASH
3133
# NOTE: Can not set reviewer to self (`ChrisCarini`) because using PAT for self.
3234
# From Docs:
33-
# Note that if you're using a Personal Access Token (PAT) as repo-token you cannot
35+
# Note that if you're using a Personal Access Token (PAT) as repo-token you cannot
3436
# request a review from the user that the PAT belongs to.
3537
# Ref: https://github.com/gradle-update/update-gradle-wrapper-action#reviewers
3638
# reviewers: |

.github/workflows/update-plugin-platform-version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
update-jetbrains-plugin-platform-version:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
13+
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
1414
timeout-minutes: 1
1515
with:
1616
token: ${{ secrets.PAT_TOKEN_FOR_IJ_UPDATE_ACTION }}

0 commit comments

Comments
 (0)