Skip to content

Commit

Permalink
Merge pull request #47 from beeware/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/checkout-4

Bump actions/checkout from 3 to 4
  • Loading branch information
freakboy3742 authored Sep 11, 2023
2 parents 2652d20 + 2a0821e commit 8900fe9
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 8900fe9

Please sign in to comment.