Skip to content

Commit 5b72e0e

Browse files
Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a8e07f0 commit 5b72e0e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ jobs:
4141
# Steps represent a sequence of tasks that will be executed as part of the job
4242
steps:
4343
- name: Checkout code (PR)
44-
uses: actions/checkout@v4
44+
uses: actions/checkout@v5
4545
if: github.event_name == 'pull_request'
4646
with:
4747
ref: ${{ github.event.pull_request.head.ref }}
4848

4949
- name: Checkout code (Main)
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
if: github.event_name != 'pull_request'
5252

5353
# # can be deleted after https://github.com/hapifhir/org.hl7.fhir.core/pull/1990 is merged (adding json5 support)

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ jobs:
99

1010
steps:
1111
- name: Checkout code
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
path: 'de.basisprofil.terminology'
1515

1616
- name: Checkout Package Registry
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
with:
1919
repository: 'hl7germany/hl7-de-package-feed'
2020
path: 'hl7-de-package-feed'
2121
token: ${{ secrets.PERSONAL_ACCESS_TOKEN_PUBLIC_REPO }}
2222

2323
- name: Checkout Update Package Registry Script
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525
with:
2626
repository: 'alexzautke/update-fhir-package-feed'
2727
path: 'update-fhir-package-feed'

0 commit comments

Comments
 (0)