Skip to content

Commit

Permalink
chore(deps): bump actions/checkout from 3 to 4 (#75)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored May 28, 2024
1 parent 63c3065 commit 54c2bb3
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/-build-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ jobs:
Download-ClinVar:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/download-clinvar

# Convert-ClinVar: Convert ClinVar XML file to JSONL.
Convert-Clinvar:
runs-on: ubuntu-latest
needs: Download-ClinVar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: ./.github/actions/convert-clinvar
with:
Expand All @@ -71,7 +71,7 @@ jobs:
needs:
- Convert-Clinvar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: ./.github/actions/phenotype-links
with:
Expand All @@ -85,7 +85,7 @@ jobs:
needs:
- Convert-Clinvar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: ./.github/actions/gene-variant-report
with:
Expand All @@ -99,7 +99,7 @@ jobs:
needs:
- Convert-Clinvar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: ./.github/actions/acmg-class-by-freq
with:
Expand All @@ -113,7 +113,7 @@ jobs:
needs:
- Convert-Clinvar
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ./.github/actions/free-disk-space
- uses: ./.github/actions/extract-vars
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: main
fetch-depth: 0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
release-name: ${{ steps.check-release.outputs.release-name }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: setup git config
run: |
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
if: needs.Create-Release.outputs.is-release == 'true'
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Mark release as published
run: |
Expand Down

0 comments on commit 54c2bb3

Please sign in to comment.