Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump dependency versions #92

Merged
merged 5 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 0 additions & 39 deletions .github/workflows/awsfulltest.yml

This file was deleted.

33 changes: 0 additions & 33 deletions .github/workflows/awstest.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- "latest-everything"
steps:
- name: Check out pipeline code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Nextflow
uses: nf-core/setup-nextflow@v1
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
env: [["sgpy-base", "dockerfiles/sgpy/sgpy_base"]]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
Expand Down Expand Up @@ -73,9 +73,9 @@ jobs:
]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Log in to Docker Hub
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
EditorConfig:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3

Expand All @@ -27,7 +27,7 @@ jobs:
Prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-node@v3

Expand All @@ -41,15 +41,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: black
uses: psf/black@stable

nf-core:
runs-on: ubuntu-latest
steps:
- name: Check out pipeline code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install Nextflow
uses: nf-core/setup-nextflow@v1
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

# - name: Upload linting log file artifact
# if: ${{ always() }}
# uses: actions/upload-artifact@v3
# uses: actions/upload-artifact@v4
# with:
# name: linting-logs
# path: |
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/hmmer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mambaorg/micromamba:1.1.0
FROM mambaorg/micromamba:1.5.0

COPY environment.yaml /tmp/env.yaml

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/hmmer_plus/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mambaorg/micromamba:1.1.0
FROM mambaorg/micromamba:1.5.0

COPY environment.yaml /tmp/env.yaml

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/minimal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mambaorg/micromamba:1.1.0
FROM mambaorg/micromamba:1.5.0

COPY environment.yaml /tmp/env.yaml

Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/sgpy/sgpy_base/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mambaorg/micromamba:1.1.0
FROM mambaorg/micromamba:1.5.0

COPY environment.yaml /tmp/env.yaml

Expand All @@ -7,7 +7,7 @@ RUN micromamba install -y -n base -f /tmp/env.yaml && \

### Add Neo4j, remove then re-add the needed directories/files to avoid any potential permission issues
# https://neo4j.com/docs/operations-manual/current/configuration/file-locations/
RUN /opt/conda/bin/wget -q https://neo4j.com/artifact.php?name=neo4j-community-5.7.0-unix.tar.gz -O neo4j.tar.gz \
RUN /opt/conda/bin/wget -q https://neo4j.com/artifact.php?name=neo4j-community-5.16.0-unix.tar.gz -O neo4j.tar.gz \
&& tar -xf neo4j.tar.gz \
&& rm neo4j.tar.gz \
&& mv neo4j* neo4j \
Expand Down
Loading