Skip to content

Commit 0f64e48

Browse files
Bump nodejs dependencies (#172)
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a0eec1a commit 0f64e48

File tree

7 files changed

+10317
-1923
lines changed

7 files changed

+10317
-1923
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
token: ${{ secrets.GITHUB_TOKEN }}
8686
commit-message: Reference latest Pixi version in README
8787
title: Reference latest Pixi version in README
88-
labels: documentation
88+
labels: ignore for release
8989

9090
check-dist:
9191
runs-on: ubuntu-latest

.github/workflows/test.yml

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ on:
77
branches: [main]
88
merge_group:
99

10+
# Automatically stop old builds on the same branch/PR
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
1015
jobs:
1116
default:
1217
strategy:

README.md

+15-15
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m
2323
## Usage
2424

2525
```yml
26-
- uses: prefix-dev/setup-pixi@v0.8.1
26+
- uses: prefix-dev/setup-pixi@v0.8.2
2727
with:
2828
pixi-version: v0.41.1
2929
cache: true
@@ -34,7 +34,7 @@ GitHub Action to set up the [pixi](https://github.com/prefix-dev/pixi) package m
3434
3535
> [!WARNING]
3636
> Since pixi is not yet stable, the API of this action may change between minor versions.
37-
> Please pin the versions of this action to a specific version (i.e., `prefix-dev/setup-pixi@v0.8.1`) to avoid breaking changes.
37+
> Please pin the versions of this action to a specific version (i.e., `prefix-dev/setup-pixi@v0.8.2`) to avoid breaking changes.
3838
> You can automatically update the version of this action by using [Dependabot](https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot).
3939
>
4040
> Put the following in your `.github/dependabot.yml` file to enable Dependabot for your GitHub Actions:
@@ -73,7 +73,7 @@ In order to not exceed the [10 GB cache size limit](https://docs.github.com/en/a
7373
This can be done by setting the `cache-write` argument.
7474

7575
```yml
76-
- uses: prefix-dev/setup-pixi@v0.8.1
76+
- uses: prefix-dev/setup-pixi@v0.8.2
7777
with:
7878
cache: true
7979
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
@@ -118,7 +118,7 @@ test:
118118
environment: [py311, py312]
119119
steps:
120120
- uses: actions/checkout@v4
121-
- uses: prefix-dev/setup-pixi@v0.8.1
121+
- uses: prefix-dev/setup-pixi@v0.8.2
122122
with:
123123
environments: ${{ matrix.environment }}
124124
```
@@ -128,7 +128,7 @@ test:
128128
The following example will install both the `py311` and the `py312` environment on the runner.
129129

130130
```yml
131-
- uses: prefix-dev/setup-pixi@v0.8.1
131+
- uses: prefix-dev/setup-pixi@v0.8.2
132132
with:
133133
# separated by spaces
134134
environments: >-
@@ -163,7 +163,7 @@ Specify the token using the `auth-token` input argument.
163163
This form of authentication (bearer token in the request headers) is mainly used at [prefix.dev](https://prefix.dev).
164164

165165
```yml
166-
- uses: prefix-dev/setup-pixi@v0.8.1
166+
- uses: prefix-dev/setup-pixi@v0.8.2
167167
with:
168168
auth-host: prefix.dev
169169
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}
@@ -175,7 +175,7 @@ Specify the username and password using the `auth-username` and `auth-password`
175175
This form of authentication (HTTP Basic Auth) is used in some enterprise environments with [artifactory](https://jfrog.com/artifactory) for example.
176176

177177
```yml
178-
- uses: prefix-dev/setup-pixi@v0.8.1
178+
- uses: prefix-dev/setup-pixi@v0.8.2
179179
with:
180180
auth-host: custom-artifactory.com
181181
auth-username: ${{ secrets.PIXI_USERNAME }}
@@ -188,7 +188,7 @@ Specify the conda-token using the `conda-token` input argument.
188188
This form of authentication (token is encoded in URL: `https://my-quetz-instance.com/t/<token>/get/custom-channel`) is used at [anaconda.org](https://anaconda.org) or with [quetz instances](https://github.com/mamba-org/quetz).
189189

190190
```yml
191-
- uses: prefix-dev/setup-pixi@v0.8.1
191+
- uses: prefix-dev/setup-pixi@v0.8.2
192192
with:
193193
auth-host: anaconda.org # or my-quetz-instance.com
194194
conda-token: ${{ secrets.CONDA_TOKEN }}
@@ -255,15 +255,15 @@ To this end, `setup-pixi` adds all environment variables set when executing `pix
255255
As a result, all installed binaries can be accessed without having to call `pixi run`.
256256

257257
```yml
258-
- uses: prefix-dev/setup-pixi@v0.8.1
258+
- uses: prefix-dev/setup-pixi@v0.8.2
259259
with:
260260
activate-environment: true
261261
```
262262

263263
If you are installing multiple environments, you will need to specify the name of the environment that you want to be activated.
264264

265265
```yml
266-
- uses: prefix-dev/setup-pixi@v0.8.1
266+
- uses: prefix-dev/setup-pixi@v0.8.2
267267
with:
268268
environments: >-
269269
py311
@@ -280,7 +280,7 @@ You can specify whether `setup-pixi` should run `pixi install --frozen` or `pixi
280280
See the [official documentation](https://prefix.dev/docs/pixi/cli#install) for more information about the `--frozen` and `--locked` flags.
281281

282282
```yml
283-
- uses: prefix-dev/setup-pixi@v0.8.1
283+
- uses: prefix-dev/setup-pixi@v0.8.2
284284
with:
285285
locked: true
286286
# or
@@ -299,7 +299,7 @@ The first one is the debug logging of the action itself.
299299
This can be enabled by running the action with the `RUNNER_DEBUG` environment variable set to `true`.
300300

301301
```yml
302-
- uses: prefix-dev/setup-pixi@v0.8.1
302+
- uses: prefix-dev/setup-pixi@v0.8.2
303303
env:
304304
RUNNER_DEBUG: true
305305
```
@@ -317,7 +317,7 @@ The second type is the debug logging of the pixi executable.
317317
This can be specified by setting the `log-level` input.
318318

319319
```yml
320-
- uses: prefix-dev/setup-pixi@v0.8.1
320+
- uses: prefix-dev/setup-pixi@v0.8.2
321321
with:
322322
# one of `q`, `default`, `v`, `vv`, or `vvv`.
323323
log-level: vvv
@@ -343,7 +343,7 @@ If nothing is specified, `post-cleanup` will default to `true`.
343343
On self-hosted runners, you also might want to alter the default pixi install location to a temporary location. You can use `pixi-bin-path: ${{ runner.temp }}/bin/pixi` to do this.
344344

345345
```yml
346-
- uses: prefix-dev/setup-pixi@v0.8.1
346+
- uses: prefix-dev/setup-pixi@v0.8.2
347347
with:
348348
post-cleanup: true
349349
# ${{ runner.temp }}\Scripts\pixi.exe on Windows
@@ -359,7 +359,7 @@ You can also use a preinstalled local version of pixi on the runner by not setti
359359
This can be overwritten by setting the `manifest-path` input argument.
360360

361361
```yml
362-
- uses: prefix-dev/setup-pixi@v0.8.1
362+
- uses: prefix-dev/setup-pixi@v0.8.2
363363
with:
364364
manifest-path: pyproject.toml
365365
```

0 commit comments

Comments
 (0)