Skip to content

Comments

Bump actions/setup-python from 2.2.2 to 2.3.1#3

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/actions/setup-python-2.3.1
Closed

Bump actions/setup-python from 2.2.2 to 2.3.1#3
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/github_actions/actions/setup-python-2.3.1

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Jan 31, 2022

Bumps actions/setup-python from 2.2.2 to 2.3.1.

Release notes

Sourced from actions/setup-python's releases.

Update actions/cache version to 1.0.8

We have updated actions/cache dependency version to 1.0.8 to support 10GB cache upload

Support caching dependencies

This release introduces dependency caching support (actions/setup-python#266)

Caching dependencies.

The action has a built-in functionality for caching and restoring pip/pipenv dependencies. The cache input is optional, and caching is turned off by default.

Besides, this release introduces dependency caching support for mono repos and repositories with complex structure.

By default, the action searches for the dependency file (requirements.txt for pip or Pipfile.lock for pipenv) in the whole repository. Use the cache-dependency-path input for cases when you want to override current behaviour and use different file for hash generation (for example requirements-dev.txt). This input supports wildcards or a list of file names for caching multiple dependencies.

Caching pip dependencies:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pip'
- run: pip install -r requirements.txt
- run: pip test

Caching pipenv dependencies:

steps:
- uses: actions/checkout@v2
- name: Install pipenv
  run: pipx install pipenv
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pipenv'
- run: pipenv install
- run: pipenv test

Change dependency file:

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
  with:
    python-version: '3.9'
    cache: 'pip'
    cache-dependency-path: '**/requirements-dev.txt'
- run: pip install -r subdirectory/requirements-dev.txt
- run: pip test
</tr></table> 

... (truncated)

Commits
  • f382193 Update @​actions/cache version to 1.0.8 (#283)
  • 3ef38b8 Create ADR for integrating cache functionality to setup-python action (#247)
  • 0066b88 Add a workflow to release a new version of the action (#274)
  • 280924f Implementation of python's caching (#266)
  • 52636cf Fix consistency in README (#250)
  • ca5c590 Update version for setup-python in package.json (#264)
  • feeaa3b Add issue and pull request templates (#258)
  • 002b1e4 Change python version for pypy in workflow files (#259)
  • d12543a Merge pull request #252 from dmitry-shibanov/v-dmshib/update-dependencies
  • 4aa563b update dependencies
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 2.2.2 to 2.3.1.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v2.2.2...v2.3.1)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Jan 31, 2022
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Feb 4, 2022

Superseded by #9.

@dependabot dependabot bot closed this Feb 4, 2022
@dependabot dependabot bot deleted the dependabot/github_actions/actions/setup-python-2.3.1 branch February 4, 2022 17:26
teoli2003 added a commit that referenced this pull request Aug 14, 2022
…ike object (part #3) (mdn#19537)

* Avoid classical for if for...of when looping all object of an Array-like object

* Update files/en-us/web/api/html_drag_and_drop_api/file_drag_and_drop/index.md

Co-authored-by: Joshua Chen <[email protected]>

* Update files/en-us/web/api/htmlanchorelement/rellist/index.md

Co-authored-by: Joshua Chen <[email protected]>

* Update files/en-us/web/api/htmlareaelement/rel/index.md

Co-authored-by: Joshua Chen <[email protected]>

* Update files/en-us/web/api/htmlbuttonelement/labels/index.md

Co-authored-by: Joshua Chen <[email protected]>

* Remove unused const

* Future proofed if units array is modified

* Update files/en-us/web/api/imagedata/imagedata/index.md

Co-authored-by: Joshua Chen <[email protected]>

* Refactor

* Keep function

Co-authored-by: Joshua Chen <[email protected]>
Josh-Cena pushed a commit that referenced this pull request Sep 13, 2022
* Fix incorrect indefinite article usage (part #3) (mdn#19409)

* Revert "Fix incorrect indefinite article usage (part #3) (mdn#19409)"

This reverts commit 4e694e0.

* Fix for the formal syntax

* Fix for the formal syntax

* Fix code review comments

* Consistently indent with 2 spaces

Co-authored-by: de-oz <[email protected]>
Co-authored-by: Will Bamberg <[email protected]>
teoli2003 pushed a commit that referenced this pull request Apr 6, 2023
* Add reference docs for GPUBindGroup

* Add reference docs for GPUBindGroupLayout

* Add reference docs for GPUPipelineLayout

* Add reference docs for GPUComputePipeline and GPURenderPipeline

* Making fixes for toji comments

* fix typo

* Update basic MDN demo example links to point to dom-examples versions
teoli2003 pushed a commit that referenced this pull request Nov 24, 2023
* Add `cancel` event

https://html.spec.whatwg.org/multipage/indices.html#event-cancel:
Fired at dialog elements when they are canceled by the user (e.g., by pressing the Escape key), or at input elements in the File state when the user does not change their selection

* 📝 Make linter happy

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

* 📝 Add an example

* 📝 highlight

* 🐛 typo

* 📝 Move cancel_event to HTMLElement

* 🔥 Removed original HTMLDialogElement/cancel_event

* 📝 Update all links

* 🐛 Sort redirects

* chore: Merge suggestion #1

Co-authored-by: Estelle Weyl <[email protected]>

* chore: Merge suggestion #2

Co-authored-by: Estelle Weyl <[email protected]>

* chore: Merge suggestion #3

Co-authored-by: Estelle Weyl <[email protected]>

* chore: Merge suggestion #4

Co-authored-by: Estelle Weyl <[email protected]>

* chore: Merge suggestion (5)

Co-authored-by: Estelle Weyl <[email protected]>

* chore: Merge suggestion (6)

Co-authored-by: Estelle Weyl <[email protected]>

* Update files/en-us/web/html/element/input/file/index.md

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

---------

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Estelle Weyl <[email protected]>
Co-authored-by: Estelle Weyl <[email protected]>
teoli2003 pushed a commit that referenced this pull request Dec 22, 2023
* chore: .js --> .jsx

* chore: remove unnecessary react import

* chore: clean up todo markup

* chore: remove undefined return warning

* chore: tweak props rendering instructions

* chore: better explain id collision

* chore: index.jsx --> main.jsx

* chore: use optional chaining consistently

* chore: use implicit boolean for completed

* nit: a word

* chore: remove default react import

* chore: remove unused props

* chore: edit jsx note

* chore: use brace expansion in bash command

* chore: add eslint note

* chore: fix todo code snippet

* chore: edit final import instructions

* Small text tweaks

* chore: apply suggestions from code review

Co-authored-by: Chris Mills <[email protected]>

* chore: apply suggestions from code review

Co-authored-by: Chris Mills <[email protected]>

* chore: update "make a todo" instructions

* clean up "id please" section

* chore: clean up "tasks as data"

* chore: small cleanup

* Small grammar fix

* Small tweak

---------

Co-authored-by: Chris Mills <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants