Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/build_pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}

- name: Checkout API Specs Repo
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: sailpoint-oss/api-specs
path: api-specs
ref: main

- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: "16"
node-version: "24"

- name: Download OpenAPI Generator
run: |
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.11.0/openapi-generator-cli-7.11.0.jar -O openapi-generator-cli.jar

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/bump_version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,29 +21,29 @@ jobs:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
fetch-depth: 0
token: ${{ secrets.DEVREL_SERVICE_TOKEN }}


- name: Checkout API Specs Repo
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
repository: sailpoint-oss/api-specs
path: api-specs
ref: main

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Set up Node
uses: actions/setup-node@v3
uses: actions/setup-node@v6
with:
node-version: "16"
node-version: "24"

- name: Run Prescript
id: prescript
Expand All @@ -52,7 +52,7 @@ jobs:

# Install yq for working with yaml files
- name: Set up yq
uses: frenck/action-setup-yq@v1
uses: frenck/action-setup-yq@v2

# Check input version is greater than the current tag
- name: Check valid version
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:

- name: Commit changes and create new version tag
if: steps.buildSDK.outcome == 'success'
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v7
with:
commit_message: Bump version to ${{ github.event.inputs.version }}
tagging_message: v${{ github.event.inputs.version }}
Expand All @@ -150,12 +150,12 @@ jobs:

- name: Create Draft Release
id: createRelease
uses: actions/create-release@v1
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: v${{ github.event.inputs.version }}
release_name: v${{ github.event.inputs.version }}
name: v${{ github.event.inputs.version }}
draft: false
prerelease: false

4 changes: 2 additions & 2 deletions .github/workflows/push_package_to_testpypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:

# Setup Python
- name: Checkout PR branch
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
token: ${{secrets.DEVREL_SERVICE_TOKEN}}

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/push_sdk_docs_to_dev_portal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR branch
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}
path: python-sdk

- name: Checkout API Specs Repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: sailpoint-oss/developer.sailpoint.com
path: developer-community
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
id-token: write
steps:
- name: Checkout branch
uses: actions/checkout@v3
uses: actions/checkout@v6
with:
ref: ${{ github.ref }}

- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.x'
- name: Install build package
Expand Down