Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

without explicit token? #121

Merged
merged 1 commit into from
Jan 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions actions/uv/build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,21 @@ runs:
using: "composite"

steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/coverage/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,21 @@ inputs:
runs:
using: "composite"
steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/deptry/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,21 @@ inputs:
runs:
using: "composite"
steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@v5
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/jupyter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,21 @@ runs:
using: "composite"

steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/marimo/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,21 @@ inputs:
runs:
using: composite
steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/pdoc/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,21 @@ inputs:
runs:
using: "composite"
steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/sphinx/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,21 @@ inputs:
runs:
using: "composite"
steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
16 changes: 14 additions & 2 deletions actions/uv/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,21 @@ inputs:
runs:
using: "composite"
steps:
# Install uv
# This is not using any github-token:
- name: Install uv
uses: astral-sh/setup-uv@887a942a15af3a7626099df99e897a18d9e5ab3a
shell: bash
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh

# Add UV to PATH for the current shell session
echo "$HOME/.local/bin" >> $GITHUB_PATH # Add UV binary directory to PATH in GitHub Actions environment
export PATH="$HOME/.local/bin:$PATH" # Add UV binary directory to PATH for the current shell session

# "Verify UV installation"
uv --version # Should print the installed version of UV

- name: "Set up Python"
uses: actions/setup-python@v5
with:
python-version: ${{ inputs.python-version }}

Expand Down
Loading