Skip to content

Bump softprops/action-gh-release from 3.0.2 to 3.0.3 #1707

Bump softprops/action-gh-release from 3.0.2 to 3.0.3

Bump softprops/action-gh-release from 3.0.2 to 3.0.3 #1707

Workflow file for this run

---
name: Molecule testing workflow
on:
pull_request:
push:
schedule:
- cron: "30 5 * * */3"
workflow_dispatch:
permissions: {}
jobs:
tox-docker:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install system dependencies
run: |
sudo apt-get update
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install tox --with tox-uv
- name: Test stable releases
run: |
tox run -e docker
tox-docker-upstream:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@05e31511f85b41b11d1cf0ef85d0992719546e2c # v2.21.0
with:
egress-policy: audit
- name: Checkout repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Install system dependencies
run: |
sudo apt-get update
curl -LsSf https://astral.sh/uv/install.sh | sh
uv tool install tox --with tox-uv
- name: Test upstream code
run: |
tox run -e docker-upstream