Skip to content

Commit

Permalink
use custom github token (#578)
Browse files Browse the repository at this point in the history
  • Loading branch information
wakamex committed Jun 27, 2023
1 parent fe3c6d4 commit 76939cc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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

1 comment on commit 76939cc

@vercel
Copy link

@vercel vercel bot commented on 76939cc Jun 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.