Skip to content

Commit 36f9b31

Browse files
Bump actions/checkout from 4 to 7
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 7. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 4cf918a commit 36f9b31

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/default.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Default
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v7
1414

1515
- run: npm install
1616
- run: npm run all
@@ -102,5 +102,5 @@ jobs:
102102
name: Validate actions typing
103103
runs-on: ubuntu-latest
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v7
106106
- uses: typesafegithub/github-actions-typing@v1

.github/workflows/pr_main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
runs-on: ubuntu-latest
1212
if: ${{ github.event.sender.login != 'dependabot[bot]' }}
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
with:
1616
ref: ${{ github.event.pull_request.base.sha }}
1717

1818
- run: node -p "'version=' + require('./package.json').version" >> $GITHUB_OUTPUT
1919
id: base-version
2020

21-
- uses: actions/checkout@v4
21+
- uses: actions/checkout@v7
2222

2323
- run: node -p "'version=' + require('./package.json').version" >> $GITHUB_OUTPUT
2424
id: new-version

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Release
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v7
1414

1515
- run: npm install
1616
- run: npm run all

0 commit comments

Comments
 (0)