Skip to content

Commit

Permalink
ci: bump the ci-dependencies group with 2 updates
Browse files Browse the repository at this point in the history
Bumps the ci-dependencies group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python).


Updates `actions/checkout` from 4.1.0 to 4.1.1
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4.1.0...v4.1.1)

Updates `actions/setup-python` from 4.7.0 to 4.7.1
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v4.7.0...v4.7.1)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ci-dependencies
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: ci-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Nov 1, 2023
1 parent 10a79be commit 07d1566
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/api-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ jobs:
NOXSESSION: api
steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-depth: 0

- name: Setup Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: 3.12

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
version: ${{ steps.set_version.outputs.version }}

steps:
- uses: actions/[email protected].0
- uses: actions/[email protected].1
with:
fetch-depth: 0
ref: ${{ github.event.inputs.tag || github.ref }}
- uses: actions/[email protected].0
- uses: actions/[email protected].1
with:
python-version: "3.11"
- name: Upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gen-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Batch changes
uses: miniscruff/[email protected]
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ jobs:

steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-tags: true

- name: Setup Python ${{ matrix.python-version }}
if: "${{ !matrix.nightly }}"
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down Expand Up @@ -144,10 +144,10 @@ jobs:
tags: ${{ steps.tags.outputs.tags }}
steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Setup Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: 3.12
architecture: x64
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
versions: ${{ steps.versions.outputs.versions }}
steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Test against all versions
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') || inputs.update_coverage }}
Expand All @@ -206,7 +206,7 @@ jobs:
engines: ${{ steps.engines.outputs.engines }}
steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Test against all engines
if: ${{ contains(github.event.pull_request.labels.*.name, 'Release') || inputs.update_coverage }}
Expand Down Expand Up @@ -291,12 +291,12 @@ jobs:

steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-tags: true

- name: Setup Python ${{ matrix.python-version }}
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down Expand Up @@ -366,12 +366,12 @@ jobs:
python-version: ${{ fromJson(needs.python_versions.outputs.versions) }}
steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
fetch-tags: true

- name: Setup Python ${{ matrix.python-version }}
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: ${{ matrix.python-version }}
architecture: x64
Expand Down Expand Up @@ -403,10 +403,10 @@ jobs:
fail-fast: false
steps:
- name: Check out the repository
uses: actions/[email protected].0
uses: actions/[email protected].1

- name: Set up Python
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
python-version: "3.12"

Expand Down

0 comments on commit 07d1566

Please sign in to comment.