Skip to content

Commit

Permalink
ci: bump the prod-actions group with 5 updates
Browse files Browse the repository at this point in the history
Bumps the prod-actions group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [jakebailey/pyright-action](https://github.com/jakebailey/pyright-action) | `1` | `2` |
| [peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request) | `5` | `6` |
| [actions/download-artifact](https://github.com/actions/download-artifact) | `3` | `4` |
| [actions/cache](https://github.com/actions/cache) | `3` | `4` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` |


Updates `jakebailey/pyright-action` from 1 to 2
- [Release notes](https://github.com/jakebailey/pyright-action/releases)
- [Commits](jakebailey/pyright-action@v1...v2)

Updates `peter-evans/create-pull-request` from 5 to 6
- [Release notes](https://github.com/peter-evans/create-pull-request/releases)
- [Commits](peter-evans/create-pull-request@v5...v6)

Updates `actions/download-artifact` from 3 to 4
- [Release notes](https://github.com/actions/download-artifact/releases)
- [Commits](actions/download-artifact@v3...v4)

Updates `actions/cache` from 3 to 4
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](actions/cache@v3...v4)

Updates `actions/upload-artifact` from 3 to 4
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](actions/upload-artifact@v3...v4)

---
updated-dependencies:
- dependency-name: jakebailey/pyright-action
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-actions
- dependency-name: peter-evans/create-pull-request
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-actions
- dependency-name: actions/download-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-actions
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: prod-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and abelcheung committed Feb 1, 2024
1 parent aadb262 commit 9634119
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@ jobs:
run: >
pip install types-beautifulsoup4
'typing_extensions >= 4.5'
- uses: jakebailey/pyright-action@v1
- uses: jakebailey/pyright-action@v2
with:
version: ${{ matrix.prver }}
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
if: >
steps.black_step.outputs.is_formatted == 'true' ||
contains(steps.isort_step.outputs.isort_result, 'Fixing ')
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v6
with:
branch: create-pull-request/black-isort
delete-branch: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test_inc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
with:
python-version: ${{ matrix.pyver }}

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ matrix.os }}-${{ env.pythonLocation }}-${{ hashFiles('tox.ini', 'pyproject.toml') }}
Expand All @@ -41,7 +41,7 @@ jobs:
run: tox run -v -e build

- name: Upload artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/*
Expand All @@ -68,13 +68,13 @@ jobs:
with:
python-version: ${{ matrix.pyver }}

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ matrix.os }}-${{ env.pythonLocation }}-${{ hashFiles('tox.ini', 'pyproject.toml') }}

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist

Expand All @@ -93,7 +93,7 @@ jobs:
--result-json test-stub-${{ strategy.job-index }}.json
- name: Upload log artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: log
path: test-stub-*.json
Expand All @@ -118,13 +118,13 @@ jobs:
with:
python-version: ${{ matrix.pyver }}

- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: ${{ env.pythonLocation }}
key: ${{ matrix.os }}-${{ env.pythonLocation }}-${{ hashFiles('tox.ini', 'pyproject.toml') }}

- name: Download artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: dist

Expand All @@ -143,7 +143,7 @@ jobs:
--result-json test-rt-${{ strategy.job-index }}.json
- name: Upload log artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: log
path: test-rt-*.json
Expand Down

0 comments on commit 9634119

Please sign in to comment.