Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 3 (#75)
Browse files Browse the repository at this point in the history
* Bump actions/checkout from 2 to 3

Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update create_docker_image.yml

Remove `[` and `]` from github.actor

* Update create_docker_image.yml

Wrong notation in export

* Update create_docker_image.yml

typo

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: gcattan <gcattan@hotmail.fr>
  • Loading branch information
dependabot[bot] and gcattan authored Sep 17, 2022
1 parent 6cdd15e commit 7dd6e3c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/create_docker_image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- uses: actions/checkout@v3
- name: Build the Docker image
run: |
docker build . --file Dockerfile --tag ghcr.io/${{ github.actor }}/pyriemann-qiskit:$tag
export actor=$(echo ${{ github.actor }} | sed 's|[<>,]||g')
docker build . --file Dockerfile --tag ghcr.io/${actor}/pyriemann-qiskit:$tag
# docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
# docker push ghcr.io/${{ github.actor }}/pyriemann-qiskit:$tag
4 changes: 2 additions & 2 deletions .github/workflows/deploy_ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
build_docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Generate HTML docs
uses: ammaraskar/sphinx-action@master
with:
Expand All @@ -39,7 +39,7 @@ jobs:
# build_docs
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/checkout@v3
# - name: Download artifacts
# uses: actions/download-artifact@v2
# with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
os: [ubuntu-latest, macOS-latest, windows-latest]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand Down

0 comments on commit 7dd6e3c

Please sign in to comment.