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
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upload-dockerhub-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

# Set up Docker Buildx
- name: Set up Docker Buildx
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/upload-pypi-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

# Set up Python environment
- name: Set up Python
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/upload-pypi-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,14 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: develop
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Python
uses: actions/setup-python@v4
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/upload-pypi-proxy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

# Set up Python environment
- name: Set up Python
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/upload-pypi-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

# Set up Python environment
- name: Set up Python
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/upload-pypi-tracker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
# Checkout the code
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}

# Set up Python environment
- name: Set up Python
Expand Down
Loading