Skip to content

Commit 9badd49

Browse files
dependabot[bot]ffried
authored andcommitted
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 b406d8e commit 9badd49

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626

2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030

3131
- name: Initialize CodeQL
3232
uses: github/codeql-action/init@v3

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
name: Deploy Action Code
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
with:
1515
token: ${{ secrets.BOT_TOKEN }}
1616
- uses: ./.github/actions/generate-action-code

.github/workflows/tag-update.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
if: ${{ github.event.release.prerelease == false }}
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- uses: sersoft-gmbh/running-release-tags-action@v3
1515
with:
1616
update-full-release: true

.github/workflows/tests.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
*) echo "::error title=Unknown platform!::Unknown platform: ${PLATFORM}" && exit 1;;
5757
esac
5858
echo "xcode=${DESTINATION}" >> "${GITHUB_OUTPUT}"
59-
- uses: actions/checkout@v4
59+
- uses: actions/checkout@v5
6060
- name: Generate action code
6161
if: ${{ github.event_name == 'pull_request' }}
6262
uses: ./.github/actions/generate-action-code
@@ -126,7 +126,7 @@ jobs:
126126
*) echo "::error title=Unknown platform!::Unknown platform: ${PLATFORM}" && exit 1;;
127127
esac
128128
echo "xcode=${DESTINATION}" >> "${GITHUB_OUTPUT}"
129-
- uses: actions/checkout@v4
129+
- uses: actions/checkout@v5
130130
- name: Generate action code
131131
if: ${{ github.event_name == 'pull_request' }}
132132
uses: ./.github/actions/generate-action-code
@@ -183,7 +183,7 @@ jobs:
183183
*) echo "::error title=Unknown platform!::Unknown platform: ${PLATFORM}" && exit 1;;
184184
esac
185185
echo "xcode=${DESTINATION}" >> "${GITHUB_OUTPUT}"
186-
- uses: actions/checkout@v4
186+
- uses: actions/checkout@v5
187187
- name: Generate action code
188188
if: ${{ github.event_name == 'pull_request' }}
189189
uses: ./.github/actions/generate-action-code
@@ -240,7 +240,7 @@ jobs:
240240
env:
241241
DEBUG_ENABLED: ${{ secrets.ACTIONS_STEP_DEBUG }}
242242
run: test "${DEBUG_ENABLED}" == 'true'
243-
- uses: actions/checkout@v4
243+
- uses: actions/checkout@v5
244244
- name: Generate action code
245245
if: ${{ github.event_name == 'pull_request' }}
246246
uses: ./.github/actions/generate-action-code
@@ -411,7 +411,7 @@ jobs:
411411
env:
412412
DEBUG_ENABLED: ${{ secrets.ACTIONS_STEP_DEBUG }}
413413
run: test "${DEBUG_ENABLED}" == 'true'
414-
- uses: actions/checkout@v4
414+
- uses: actions/checkout@v5
415415
- name: Generate action code
416416
if: ${{ github.event_name == 'pull_request' }}
417417
uses: ./.github/actions/generate-action-code
@@ -585,7 +585,7 @@ jobs:
585585
env:
586586
DEBUG_ENABLED: ${{ secrets.ACTIONS_STEP_DEBUG }}
587587
run: test "${DEBUG_ENABLED}" == 'true'
588-
- uses: actions/checkout@v4
588+
- uses: actions/checkout@v5
589589
- name: Generate action code
590590
if: ${{ github.event_name == 'pull_request' }}
591591
uses: ./.github/actions/generate-action-code
@@ -740,7 +740,7 @@ jobs:
740740
env:
741741
DEBUG_ENABLED: ${{ secrets.ACTIONS_STEP_DEBUG }}
742742
run: test "${DEBUG_ENABLED}" == 'true'
743-
- uses: actions/checkout@v4
743+
- uses: actions/checkout@v5
744744
- name: Generate action code
745745
if: ${{ github.event_name == 'pull_request' }}
746746
uses: ./.github/actions/generate-action-code

0 commit comments

Comments
 (0)