Skip to content

Commit

Permalink
Merge pull request py4dstem#602 from py4dstem/dependabot/github_actio…
Browse files Browse the repository at this point in the history
…ns/actions/checkout-4

Bump actions/checkout from 3 to 4

Former-commit-id: c76cb1e
  • Loading branch information
bsavitzky authored Jan 25, 2024
2 parents 64a95c1 + 3453498 commit 6e82e65
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/black.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: psf/black@stable
2 changes: 1 addition & 1 deletion .github/workflows/build-flake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_install_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# runs-on: macos-latest
# allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_install_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# runs-on: macos-latest
# allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check_install_quick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
# runs-on: macos-latest
# allow_failure: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pypi_upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
name: Check if version.py is changed and update if the version.py is not changed
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GH_ACTION_VERSION_UPDATE }}
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
name: Sync main with dev
steps:
- name: Sync main with dev
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: dev
fetch-depth: 0
Expand All @@ -63,7 +63,7 @@ jobs:
runs-on: ubuntu-latest
name: Deploy to PyPI
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: dev
- name: Set up Python
Expand Down

0 comments on commit 6e82e65

Please sign in to comment.