Skip to content

Bump requests from 2.33.1 to 2.34.0 #996

Bump requests from 2.33.1 to 2.34.0

Bump requests from 2.33.1 to 2.34.0 #996

name: Create Release
on: push
jobs:
create_release:
name: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
- name: Install Python 3.10
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
with:
python-version: "3.10"
- name: Upgrade python pip
run: python -m pip install --upgrade pip
- name: Install git
run: pip install gitpython
- name: Install semver
run: pip install semver
- name: Set SPEC_VERSION env var
run: echo "SPEC_VERSION=$(python scripts/calculate_version.py)" >> $GITHUB_ENV
- name: Create release (main only)
id: create-release
if: github.ref == 'refs/heads/main'
uses: actions/create-release@0cb9c9b65d5d1901c1f53e5e66eaf4afd303e70e # v1.1.4
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.SPEC_VERSION }}
release_name: ${{ env.SPEC_VERSION }}