Skip to content

Commit

Permalink
Merge pull request #611 from edmcouncil/fix-ci-warning
Browse files Browse the repository at this point in the history
Fix Warning in GitHub Actions CI
  • Loading branch information
mereolog authored Jul 11, 2024
2 parents 8e3c6e1 + e35e848 commit 0c45182
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/spellcheck_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
spellcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
Expand All @@ -39,9 +39,8 @@ jobs:
exit $?
fi
- name: Archive logfile
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: logifle
path: spellcheck_log.log

12 changes: 6 additions & 6 deletions .github/workflows/unit_tests_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
IDMP:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Java 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "11"
Expand All @@ -44,7 +44,7 @@ jobs:
exit $?
fi
- name: Archive merged ontology on failure
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: always()
with:
name: merged-ontology
Expand All @@ -54,9 +54,9 @@ jobs:
env:
GSRS_VERSION: ${{ inputs.gsrs_version || '2023-12-14' }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Java 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: "temurin"
java-version: "11"
Expand All @@ -66,7 +66,7 @@ jobs:
./etc/unit_tests/dependencies.sh
- name: GSRS Cache
id: gsrs-caches
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
gsrs-transformed.ttl
Expand Down

0 comments on commit 0c45182

Please sign in to comment.