Skip to content

Commit

Permalink
Bump actions/checkout from 4.1.7 to 4.2.0
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.7...v4.2.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Sep 29, 2024
1 parent 338cfc1 commit 108cfc3
Show file tree
Hide file tree
Showing 9 changed files with 18 additions and 18 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 @@ -86,13 +86,13 @@ jobs:
echo "system-python-version=${SYSTEM_PYTHON_VER}" | tee -a ${GITHUB_OUTPUT}
- name: Checkout ${{ inputs.repository }}
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: ${{ inputs.repository }}
fetch-depth: 0

- name: Checkout ${{ inputs.workflow-repo }}${{ inputs.workflow-repo-ref && format('@{0}', inputs.workflow-repo-ref) || '' }}
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: ${{ inputs.workflow-repo }}
ref: ${{ inputs.workflow-repo-ref }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/app-create-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,20 +49,20 @@ jobs:
steps:

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

- name: Checkout ${{ inputs.workflow-repo }}${{ inputs.workflow-repo-ref && format('@{0}', inputs.workflow-repo-ref) || '' }}
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: ${{ inputs.workflow-repo }}
ref: ${{ inputs.workflow-repo-ref }}
path: beeware-.github

- name: Checkout beeware/briefcase-template
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: beeware/briefcase-template
path: briefcase-template
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
expected: "main"
steps:
- name: Checkout beeware/.github
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

- name: Set up Python
uses: actions/[email protected]
Expand Down Expand Up @@ -194,18 +194,18 @@ jobs:
runner-os: [ macos-latest, windows-latest, ubuntu-latest ]
steps:
- name: Checkout beeware/briefcase
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: beeware/briefcase

- name: Checkout beeware/briefcase to path
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: beeware/briefcase
path: repos/briefcase

- name: Checkout beeware/.github
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: beeware/.github
path: repos/.github-beeware
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dep-version-bump.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,13 @@ jobs:
timeout-minutes: 15
steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
token: ${{ secrets.BRUTUS_PAT_TOKEN }}
path: "repo"

- name: Checkout ${{ inputs.workflow-repo }}${{ inputs.workflow-repo-ref && format('@{0}', inputs.workflow-repo-ref) || '' }}
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: ${{ inputs.workflow-repo }}
ref: ${{ inputs.workflow-repo-ref }}
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 @@ -18,7 +18,7 @@ jobs:
steps:

- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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@v4.1.7
uses: actions/checkout@v4.2.0
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 @@ -43,7 +43,7 @@ jobs:
hook-repos: ${{ steps.hooks.outputs.repos }}
steps:
- name: Checkout Repo
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0

- name: Get Pre-commit Hooks
id: hooks
Expand All @@ -62,7 +62,7 @@ jobs:
hook-repo: ${{ fromJson(needs.pre-commit-hooks.outputs.hook-repos) }}
steps:
- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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 @@ -58,7 +58,7 @@ jobs:
echo "differentiator=${DIFFERENTIATOR}" | tee -a ${GITHUB_OUTPUT}
- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.0
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@v4.1.7
uses: actions/checkout@v4.2.0
with:
repository: ${{ inputs.repository }}
ref: ${{ github.event.repository.default_branch }}
fetch-depth: 0

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

0 comments on commit 108cfc3

Please sign in to comment.