Skip to content

Commit

Permalink
Try using ubuntu-20.04 image
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita Karetnikov committed Oct 18, 2023
1 parent bb3b131 commit cee8495
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ permissions:
jobs:
build_and_push_docker_image:
name: "Build Docker Images 🛠"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
docker-image:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
build-docs:
name: "documentation"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
defaults:
run:
working-directory: conda-store-server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ permissions:

jobs:
pypi-release:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
strategy:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
# cannot run on windows due to needing fake-chroot for conda-docker
os: [ubuntu-latest, macos-latest]
os: [ubuntu-20.04, macos-latest]
runs-on: ${{ matrix.os }}
defaults:
run:
Expand All @@ -26,7 +26,7 @@ jobs:
uses: actions/checkout@v4

- name: Set up Python (Linux)
if: matrix.os == 'ubuntu-latest'
if: matrix.os == 'ubuntu-20.04'
uses: conda-incubator/setup-miniconda@v2
with:
mamba-version: "*"
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
integration-test-conda-store-server:
name: "integration-test conda-store-server"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
defaults:
run:
shell: bash -el {0}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
test-conda-store:
name: "integration-test conda-store"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
defaults:
run:
working-directory: conda-store
Expand Down Expand Up @@ -176,7 +176,7 @@ jobs:
build-docker-image:
name: "Build docker images"
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
matrix:
docker-image:
Expand Down

0 comments on commit cee8495

Please sign in to comment.