Skip to content

Commit

Permalink
fix dockerhub repo name
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaostuni committed Jan 2, 2024
1 parent 6fd713b commit f118c70
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .docker/base.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN apt-get update &&\
apt-add-repository "deb https://apt.kitware.com/ubuntu/ `lsb_release -cs` main" &&\
add-apt-repository ppa:deadsnakes/ppa &&\
wget -nv -O - http://apt.llvm.org/llvm-snapshot.gpg.key | apt-key add - &&\
apt-add-repository -y "deb http://apt.llvm.org/`lsb_release -cs`/ llvm-toolchain-`lsb_release -cs`-10 main" &&\
apt-add-repository -y "deb http://apt.llvm.org/`lsb_release -cs`/ llvm-toolchain-`lsb_release -cs`-17 main" &&\
apt-get update &&\
apt-get install -y --no-install-recommends \
build-essential \
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
software-properties-common
- name: '🐍 Initialize Python'
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.8

Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
software-properties-common
- name: '🐍 Initialize Python'
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -431,7 +431,7 @@ jobs:
# Any Python3 version is ok in this job
- name: '🐍 Initialize Python'
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.10

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
steps:

- name: "🔀 Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: "⬇️️ Install dependencies"
run: sudo apt-get install -y --no-install-recommends colordiff
Expand All @@ -43,10 +43,10 @@ jobs:
steps:

- name: "🔀 Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: '🐍 Initialize Python'
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.10"

Expand All @@ -63,12 +63,12 @@ jobs:
steps:

- name: "🔀 Checkout repository"
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: '🐍 Initialize Python'
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: "3.8"
python-version: "3.10"

- name: "📝 isort"
uses: isort/isort-action@master
Expand Down

0 comments on commit f118c70

Please sign in to comment.