Skip to content

Commit

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

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

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Sep 12, 2022
1 parent 11dca51 commit 7058370
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout Zwavejs2Mqtt
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2.4.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
language: ['javascript']
steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
packages: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # fetch everything
ref: ${{ github.event.inputs.branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: docker/setup-buildx-action@v1.3.0
- uses: docker/setup-qemu-action@v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
matrix:
platforms: [linux/amd64, linux/arm64, linux/arm/v6, linux/arm/v7]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- uses: docker/setup-buildx-action@v1.3.0
- uses: docker/setup-qemu-action@v1.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-it.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
node-version: [14.17.2]
steps:
- name: Checkout master
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
ref: 'master'
fetch-depth: 0 # fetch all commits history to create the changelog
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dep.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Use Node.js 14
uses: actions/setup-node@v2.4.1
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/zwave-js-bot_comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

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

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

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

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

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

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

0 comments on commit 7058370

Please sign in to comment.