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

use custom github token #578

Merged
merged 1 commit into from
Jun 27, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/docker-elf-sims.yml
Expand Up @@ -23,14 +23,14 @@ jobs:
uses: actions/checkout@v3
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}

- name: Log in to the Container registry
uses: docker/login-action@v2.2.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GH_GITHUB_COM_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Expand Up @@ -13,14 +13,14 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
- run: |
python -m pip install --upgrade pip
python -m pip install .[with-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static.yml
Expand Up @@ -13,14 +13,14 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
- run: |
python -m pip install --upgrade pip
python -m pip install .[with-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}

- name: install node
uses: actions/setup-node@v3
Expand All @@ -37,7 +37,7 @@ jobs:
with:
python-version: "3.10"
cache: "pip"
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GH_GITHUB_COM_TOKEN }}
- run: |
python -m pip install --upgrade pip
python -m pip install .[with-dependencies]
Expand Down