Skip to content

Commit ecd0741

Browse files
build(deps): 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] <[email protected]>
1 parent 7fae832 commit ecd0741

12 files changed

+15
-15
lines changed

.github/workflows/break-pacman-upload-lease.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: Clone build-extra
12-
uses: actions/checkout@v4
12+
uses: actions/checkout@v5
1313
with:
1414
repository: git-for-windows/build-extra
1515
- name: Break the lease

.github/workflows/build-and-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.event.repository.owner.login == 'git-for-windows'
4040
runs-on: ${{ github.event.inputs.architecture == 'aarch64' && 'windows-11-arm' || 'windows-latest' }}
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343

4444
# Since we want to operate on _another_ repository, we sadly cannot use:
4545
#

.github/workflows/cleanup-self-hosted-runners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
if: github.repository_owner == 'git-for-windows'
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v4
42+
- uses: actions/checkout@v5
4343
- name: Azure Login
4444
uses: azure/login@v2
4545
with:

.github/workflows/create-azure-self-hosted-runners.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
VM_NAME="actions-runner-$(date +%Y%m%d%H%M%S%N)"
9595
echo "Will be using $VM_NAME as the VM name"
9696
echo "vm_name=$VM_NAME" >> $GITHUB_OUTPUT
97-
- uses: actions/checkout@v4
97+
- uses: actions/checkout@v5
9898
- name: Obtain installation token
9999
id: setup
100100
uses: actions/github-script@v7

.github/workflows/git-artifacts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
check-run-state: ${{steps.check-run-state.outputs.check-run-state}}
5454
steps:
5555
- name: clone git-for-windows-automation
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
- name: Construct bundle-artifacts from existing tag
5858
if: env.EXISTING_GIT_TAG != ''
5959
run: |
@@ -377,7 +377,7 @@ jobs:
377377
steps:
378378
- name: clone git-for-windows-automation
379379
if: needs.pkg.outputs.check-run-state != '' && always()
380-
uses: actions/checkout@v4
380+
uses: actions/checkout@v5
381381
- name: Download pkg-${{env.ARCHITECTURE}}
382382
uses: actions/download-artifact@v5
383383
with:
@@ -592,7 +592,7 @@ jobs:
592592
path: sha256sums
593593
- name: clone git-for-windows-automation
594594
if: needs.pkg.outputs.check-run-state != '' && always()
595-
uses: actions/checkout@v4
595+
uses: actions/checkout@v5
596596
- name: restore check-run state
597597
if: needs.pkg.outputs.check-run-state != '' && always()
598598
id: check-run-state

.github/workflows/open-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
esac &&
4646
echo "REPO=$repo" >>$GITHUB_ENV &&
4747
echo "repo=$repo" >>$GITHUB_OUTPUT
48-
- uses: actions/checkout@v4
48+
- uses: actions/checkout@v5
4949
# Since we want to operate on _another_ repository, we sadly cannot use:
5050
#
5151
# permissions:

.github/workflows/prepare-embargoed-branches.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: sanity check
2020
if: ${{ github.repository_owner == 'git-for-windows' }}
2121
run: echo "This action is not meant to be run on the Git for Windows repository" >&2 && exit 1
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
- name: identify actor
2424
id: actor
2525
uses: actions/github-script@v7

.github/workflows/release-git.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
pull-request-number: ${{ steps.announcement.outputs.pull-request-number }}
3636
pull-request-comment: ${{ steps.announcement.outputs.pull-request-comment }}
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v5
3939
- name: The `release` branch must be up to date
4040
uses: actions/github-script@v7
4141
with:

.github/workflows/remove-packages-from-pacman-repository.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
if: github.event.repository.fork != true
2222
runs-on: 'windows-latest'
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525

2626
- name: Configure build
2727
shell: bash

.github/workflows/tag-git.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
ref: 'heads/main',
4949
})
5050
core.exportVariable('REV', ref.object.sha)
51-
- uses: actions/checkout@v4
51+
- uses: actions/checkout@v5
5252
- name: Mirror Check Run to ${{ env.OWNER }}/${{ env.REPO }}
5353
if: env.CREATE_CHECK_RUN != 'false'
5454
uses: ./.github/actions/check-run-action

0 commit comments

Comments
 (0)