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 and drdavella committed Sep 5, 2023
1 parent d2395fe commit 1e82931
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/codemod_pygoat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
with:
python-version: '3.11'
- name: Check out codemodder
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Dependencies
run: pip install -r requirements/codemodder.txt
- name: Check out Pygoat
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: pixee/pygoat
path: pygoat
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image_to_aws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
contents: write
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Fetch AWS Credentials
uses: aws-actions/configure-aws-credentials@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
python-version: '3.11'
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Dependencies
run: pip install -r requirements/lint.txt
- name: Black Format Check
Expand All @@ -43,7 +43,7 @@ jobs:
with:
python-version: '3.11'
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Dependencies
run: |
pip install -r requirements/complexity.txt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit-autoupdate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
auto-update:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: browniebroke/pre-commit-autoupdate-action@main
- uses: peter-evans/create-pull-request@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Check out code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Dependencies
run: pip install -r requirements/test.txt
- name: Run pytest
Expand Down

0 comments on commit 1e82931

Please sign in to comment.