Skip to content

Commit

Permalink
fix node deprecation warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
nebfield committed Mar 4, 2024
1 parent e4fa3b0 commit cf16c0e
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ancestry-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "ANCESTRY_TARGET_DIR=$RUNNER_TEMP" >> $GITHUB_ENV
- name: Restore reference data
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
${{ env.ANCESTRY_TARGET_DIR }}/GRCh38_HAPNEST_TARGET_ALL.pgen
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ancestry-vcf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v3

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2

- name: Restore docker images
id: restore-docker
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ runner.temp }}/docker
key: ${{ inputs.container-cache-key }}
Expand All @@ -48,7 +48,7 @@ jobs:
find ${{ runner.temp }}/docker/ -name '*.tar' -exec sh -c 'docker load < {}' \;
- name: Restore reference data
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
${{ env.ANCESTRY_TARGET_DIR }}/GRCh38_HAPNEST_TARGET_ALL.pgen
Expand Down Expand Up @@ -99,11 +99,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v3

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2

- name: Restore singularity setup
id: restore-singularity-setup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/singularity/${{ env.SINGULARITY_VERSION }}/x64
key: ${{ runner.os }}-singularity-${{ env.SINGULARITY_VERSION }}
Expand All @@ -115,13 +115,13 @@ jobs:
- name: Restore singularity container images
id: restore-singularity
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.NXF_SINGULARITY_CACHEDIR }}
key: ${{ inputs.container-cache-key }}

- name: Restore reference data
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
${{ env.ANCESTRY_TARGET_DIR }}/GRCh38_HAPNEST_TARGET_ALL.pgen
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ancestry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v3

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2

- name: Restore docker images
id: restore-docker
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ runner.temp }}/docker
key: ${{ inputs.container-cache-key }}
Expand All @@ -48,7 +48,7 @@ jobs:
find ${{ runner.temp }}/docker/ -name '*.tar' -exec sh -c 'docker load < {}' \;
- name: Restore reference data
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
${{ env.ANCESTRY_TARGET_DIR }}/GRCh38_HAPNEST_TARGET_ALL.pgen
Expand Down Expand Up @@ -93,11 +93,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v3

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2

- name: Restore singularity setup
id: restore-singularity-setup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/singularity/${{ env.SINGULARITY_VERSION }}/x64
key: ${{ runner.os }}-singularity-${{ env.SINGULARITY_VERSION }}
Expand All @@ -109,13 +109,13 @@ jobs:
- name: Restore singularity container images
id: restore-singularity
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.NXF_SINGULARITY_CACHEDIR }}
key: ${{ inputs.container-cache-key }}

- name: Restore reference data
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: |
${{ env.ANCESTRY_TARGET_DIR }}/GRCh38_HAPNEST_TARGET_ALL.pgen
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v3

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2

- name: Restore docker images
id: restore-docker
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ runner.temp }}/docker
key: ${{ inputs.cache-key }}
Expand Down Expand Up @@ -77,11 +77,11 @@ jobs:
- name: Check out pipeline code
uses: actions/checkout@v3

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2

- name: Restore singularity setup
id: restore-singularity-setup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/singularity/${{ env.SINGULARITY_VERSION }}/x64
key: ${{ runner.os }}-singularity-${{ env.SINGULARITY_VERSION }}
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Restore singularity container images
id: restore-singularity
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.NXF_SINGULARITY_CACHEDIR }}
key: ${{ inputs.cache-key }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/preload-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Save docker
id: cache-docker
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ runner.temp }}/docker
key: docker-${{ github.sha }}
2 changes: 1 addition & 1 deletion .github/workflows/preload-reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Cache reference data
id: cache-ref
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
${{ env.ANCESTRY_TARGET_DIR }}/GRCh38_HAPNEST_TARGET_ALL.pgen
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/preload-singularity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

- name: Cache singularity setup
id: cache-singularity-setup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/singularity/${{ env.SINGULARITY_VERSION }}/x64
key: ${{ runner.os }}-singularity-${{ env.SINGULARITY_VERSION }}
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Cache singularity images
id: cache-singularity-pull
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.NXF_SINGULARITY_CACHEDIR }}
key: singularity-${{ github.sha }}
10 changes: 5 additions & 5 deletions .github/workflows/standard-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2
with:
version: ${{ matrix.nxf_ver }}

- name: Restore docker images
id: restore-docker
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ runner.temp }}/docker
key: ${{ inputs.cache-key }}
Expand Down Expand Up @@ -70,13 +70,13 @@ jobs:
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch

- uses: nf-core/setup-nextflow@v1
- uses: nf-core/setup-nextflow@v2
with:
version: ${{ matrix.nxf_ver }}

- name: Restore singularity setup
id: restore-singularity-setup
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /opt/hostedtoolcache/singularity/${{ env.SINGULARITY_VERSION }}/x64
key: ${{ runner.os }}-singularity-${{ env.SINGULARITY_VERSION }}
Expand All @@ -88,7 +88,7 @@ jobs:
- name: Restore singularity container images
id: restore-singularity
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ env.NXF_SINGULARITY_CACHEDIR }}
key: ${{ inputs.cache-key }}
Expand Down

0 comments on commit cf16c0e

Please sign in to comment.