Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 1, 2023
1 parent 715a0d4 commit 97feb01
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Dependabot metadata
id: dependabot-metadata
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 'Checkout Repository'
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
2 changes: 1 addition & 1 deletion .github/workflows/generate-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-config-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the history, or this action won't work

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Prepare testing environment
uses: ./.github/actions/prepare-env
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand All @@ -215,7 +215,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:

# steps:
# - name: Checkout code
# uses: actions/checkout@v3
# uses: actions/checkout@v4

# - name: Restore Turbo Cache from previous jobs
# uses: ./.github/actions/build-cache-download
Expand Down Expand Up @@ -307,7 +307,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand Down Expand Up @@ -345,7 +345,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand Down Expand Up @@ -385,7 +385,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Restore Turbo Cache from previous jobs
uses: ./.github/actions/build-cache-download
Expand Down
20 changes: 10 additions & 10 deletions .github/workflows/zwave-js-bot_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
})
- name: Checkout merged code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{secrets.BOT_TOKEN}}
fetch-depth: 0 # We need the history for versioning with yarn
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: trusted

Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
if: |
steps.check-permissions.outputs.result == 'true' &&
!fromJSON(steps.pr-info.outputs.result).pending
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{secrets.BOT_TOKEN}}
repository: ${{ fromJSON(steps.pr-info.outputs.result).repoName }}
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check user's permissions to do this
id: check-permissions
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
- name: Checkout pull request
if: steps.check-permissions.outputs.result == 'true'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
token: ${{secrets.BOT_TOKEN}}
repository: ${{ fromJSON(steps.get-pr.outputs.result).head.repo.full_name }}
Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:

# steps:
# - name: Checkout master branch
# uses: actions/checkout@v3
# uses: actions/checkout@v4

# - name: Check permissions and necessity
# id: check-permissions
Expand Down Expand Up @@ -327,7 +327,7 @@ jobs:

# - name: Checkout pull request
# if: steps.check-permissions.outputs.result == 'true'
# uses: actions/checkout@v3
# uses: actions/checkout@v4
# with:
# fetch-depth: 0 # Fetch the history, or this action will break everything!
# token: ${{secrets.BOT_TOKEN}}
Expand Down Expand Up @@ -384,7 +384,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check user's permissions to do this
id: check-permissions
Expand Down Expand Up @@ -492,7 +492,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check user's permissions to do this
id: check-permissions
Expand Down Expand Up @@ -612,7 +612,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Check user's permissions to do this
id: check-permissions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/zwave-js-bot_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: actions/github-script@v6
with:
Expand Down

0 comments on commit 97feb01

Please sign in to comment.