Skip to content

Commit

Permalink
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] <support@github.com>
  • Loading branch information
dependabot[bot] authored Sep 10, 2023
1 parent f7a815a commit 246ea67
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/app-build-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ jobs:
steps:

- name: Checkout ${{ inputs.repository }}
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
fetch-depth: 0

- name: Checkout beeware/.github
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: "beeware/.github"
path: "beeware-.github"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
expected: "main"
steps:
- name: Checkout .github repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4.7.0
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Windows Store Python
uses: ./.github/actions/install-win-store-python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-changenote.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
token: ${{ secrets.BRUTUS_PAT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pre-commit-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
hook-repos: ${{ steps.hooks.outputs.repos }}
steps:
- name: Checkout Repo
uses: actions/checkout@v3.5.2
uses: actions/checkout@v4

- name: Get Pre-commit Hooks
id: hooks
Expand All @@ -59,7 +59,7 @@ jobs:
hook-repo: ${{ fromJson(needs.pre-commit-hooks.outputs.hook-repos) }}
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
token: ${{ secrets.BRUTUS_PAT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package-create.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
run: echo "name=$(basename '${{ inputs.repository }}')" >> ${GITHUB_OUTPUT}

- name: Checkout
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
fetch-depth: 0 # Fetch all refs so setuptools_scm can generate the correct version number
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/towncrier-run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:
steps:

- name: Checkout Default Branch
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
ref: ${{ github.event.repository.default_branch }}
fetch-depth: 0

- name: Checkout Current Branch
uses: actions/checkout@v3.3.0
uses: actions/checkout@v4
with:
repository: ${{ inputs.repository }}
fetch-depth: 0
Expand Down

0 comments on commit 246ea67

Please sign in to comment.