Skip to content

Commit

Permalink
Bump the actions group with 5 updates
Browse files Browse the repository at this point in the history
Bumps the actions group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [guilhem/rss-issues-action](https://github.com/guilhem/rss-issues-action) | `0.4.0` | `0.5.2` |
| [actions/checkout](https://github.com/actions/checkout) | `3` | `4` |
| [actions/setup-python](https://github.com/actions/setup-python) | `4` | `5` |
| [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) | `0.0.9` | `2.1.1` |
| [actions/upload-artifact](https://github.com/actions/upload-artifact) | `3` | `4` |


Updates `guilhem/rss-issues-action` from 0.4.0 to 0.5.2
- [Release notes](https://github.com/guilhem/rss-issues-action/releases)
- [Commits](guilhem/rss-issues-action@0.4.0...0.5.2)

Updates `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)

Updates `actions/setup-python` from 4 to 5
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4...v5)

Updates `sigstore/gh-action-sigstore-python` from 0.0.9 to 2.1.1
- [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases)
- [Commits](sigstore/gh-action-sigstore-python@v0.0.9...v2.1.1)

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: guilhem/rss-issues-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: sigstore/gh-action-sigstore-python
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/upload-artifact
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed Feb 3, 2024
1 parent 199774e commit e71bae1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pip-feed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
pip-check:
runs-on: ubuntu-latest
steps:
- uses: guilhem/rss-issues-action@0.4.0
- uses: guilhem/rss-issues-action@0.5.2
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
feed: "https://pypi.org/rss/project/pip/releases.xml"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
name: upload release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: ">= 3.7"

Expand All @@ -36,7 +36,7 @@ jobs:
password: ${{ secrets.PYPI_TOKEN }}

- name: sign
uses: sigstore/gh-action-sigstore-python@v0.0.9
uses: sigstore/gh-action-sigstore-python@v2.1.1
with:
inputs: ./dist/*.tar.gz ./dist/*.whl

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ jobs:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
- name: Install tox
run: python -m pip install tox
- name: Run linting
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Grab the src from GH
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install `pypa/build` PEP 517 front-end
run: python -m pip install 'build ~= 0.10.0'
Expand All @@ -46,7 +46,7 @@ jobs:
dist/${{ env.sdist-artifact-name-wildcard }}
- name: Store the distribution package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ env.dists-artifact-name }}
# NOTE: Exact expected file names are specified here
Expand All @@ -64,9 +64,9 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
- name: Install tox
run: python -m pip install tox
- id: set-matrix
Expand All @@ -88,7 +88,7 @@ jobs:
source-tarball-name: ${{ env.sdist-artifact-name-wildcard }}
workflow-artifact-name: ${{ env.dists-artifact-name }}
- name: Setup python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install tox
Expand Down

0 comments on commit e71bae1

Please sign in to comment.