Skip to content
Open
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
64 changes: 64 additions & 0 deletions .github/workflows/update-copyright-dates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Update copyright dates

on:
schedule:
# Run every first day of the year at 09:00 AM UTC
- cron: '0 9 1 1 *'
workflow_dispatch:
# Allow manual triggering
push:
branches:
- "*"

jobs:
check-links:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.x'

- name: Install bdip-tools
run: pip install --extra-index-url https://maven.sing-group.org/repository/python-snapshots/simple/ bdip-tools

- name: Git config
run: |
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"

- name: Update copyright dates
id: update-dates
run: |
set +e
bdip update-copyright-dates --git .
EXIT_CODE=$?
set -e

if [ $EXIT_CODE -eq 0 ]; then
echo "Changes were made and committed to branch"
echo "has_changes=true" >> $GITHUB_OUTPUT
else
echo "No copyright updates needed"
echo "has_changes=false" >> $GITHUB_OUTPUT
fi

- name: Create Pull Request
if: steps.update-dates.outputs.has_changes == 'true'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
YEAR=$(date +%Y)
gh pr create \
--title "Update copyright dates to $YEAR" \
--body "This PR updates the copyright dates to $YEAR." \
--base master \
--head "maintenance/update-copyright-dates-$YEAR" \
--label "maintenance"
2 changes: 1 addition & 1 deletion abyss/2.0.2-3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion abyss/2.1.0-k.128/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion abyss/2.1.0-k.256/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion abyss/2.1.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion adops/0.7.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion adops/0.7.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion aegean/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2022 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion afterqc/0.9.7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion alter/1.3.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion autoaugustus/2.5.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bdbm/1.0.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bedtools/2.27.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bedtools/2.29.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bedtools/2.30.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bedtools/2.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bioconvert/0.4.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion biopython/1.78/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion biopython/1.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion biopython_utilities/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion blast/2.10.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion blast/2.13.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion blast/2.6.0-1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion blast/2.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2023 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion blast_utilities/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bowtie1/1.2.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion bwa/0.7.17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion cds2gff3-maker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2022 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion clustalomega/1.2.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion coral/1.4.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion cport_server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion cutadapt/1.16/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion diamond/2.x/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2023 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion dnasp-v6/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
3 changes: 2 additions & 1 deletion docker-manager/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#
# Copyright 2018-2024 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel

# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
3 changes: 2 additions & 1 deletion docker-manager/v1.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#
# Copyright 2018-2024 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel

# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion docker/18.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion docker/20.04/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion edena/3.131028/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion emboss/6.6.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion entrez-direct/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion fastqc/0.11.7/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion fastqc/0.11.9/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion fastqc/0.X/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion fasttree/2.1.10/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion feature-counts/2.0.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion figtree/1.4.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2022 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
2 changes: 1 addition & 1 deletion flash/1.2.11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#
# Copyright 2018-2021 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Copyright 2018-2025 Hugo López-Fernández, Pedro M. Ferreira, Miguel
# Reboiro-Jato, Cristina P. Vieira, and Jorge Vieira
#
# Licensed under the Apache License, Version 2.0 (the "License");
Expand Down
Loading