Skip to content

Commit

Permalink
use custom github token
Browse files Browse the repository at this point in the history
  • Loading branch information
wakamex committed Jun 27, 2023
1 parent fe3c6d4 commit 1a69534
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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

0 comments on commit 1a69534

Please sign in to comment.