Skip to content

Commit

Permalink
Bump dependency versions (#92)
Browse files Browse the repository at this point in the history
* build(deps): bump actions/checkout from v3 to v4

* refactor: remove unused nf-core GH actions

* build(deps): bump micromamba docker from 1.1.0 to 1.5.0

* build(deps): bump Neo4j from 5.7.0 to 5.16.0
  • Loading branch information
chasemc authored Feb 22, 2024
1 parent c90f59b commit bed3724
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 87 deletions.
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

0 comments on commit bed3724

Please sign in to comment.