Skip to content

Commit aadfc7d

Browse files
chore(deps): bump actions/checkout from 5 to 6 (#404)
Bumps [actions/checkout](https://github.com/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 ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 14b36d9 commit aadfc7d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v5
7+
- uses: actions/checkout@v6
88
- run: |
99
npm ci
1010
npm run lint:all

.github/workflows/demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: File Sync
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- uses: ./
1313
name: "Simple"
1414
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
build:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v5
10+
- uses: actions/checkout@v6
1111
with:
1212
token: ${{ secrets.SYNCED_GITHUB_TOKEN }}
1313
ref: "master"
@@ -20,7 +20,7 @@ jobs:
2020
git add dist/index.js
2121
git commit -m "chore: publish dist" || echo "nothing to commit"
2222
git push origin master
23-
- uses: actions/checkout@v5
23+
- uses: actions/checkout@v6
2424
with:
2525
ref: master
2626
- name: Test Action
@@ -34,7 +34,7 @@ jobs:
3434
adrianjost/files-sync-target
3535
GITHUB_TOKEN: ${{ secrets.SYNCED_GITHUB_TOKEN }}
3636
- name: Checkout
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
ref: master
4040
- name: Semantic Release

.github/workflows/synced-process-todo-comments.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: Collect TODO
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v6
1515
with:
1616
token: ${{ secrets.SYNCED_GITHUB_TOKEN }}
1717
- name: Collect TODO

0 commit comments

Comments
 (0)