Skip to content

Commit a895567

Browse files
authored
Merge pull request #145 from git-for-windows/dependabot/github_actions/actions/checkout-6
build(deps): bump actions/checkout from 5 to 6
2 parents ba5517f + 66906eb commit a895567

13 files changed

+16
-16
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@v5
12+
uses: actions/checkout@v6
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@v5
42+
- uses: actions/checkout@v6
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@v5
42+
- uses: actions/checkout@v6
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@v5
97+
- uses: actions/checkout@v6
9898
- name: Obtain installation token
9999
id: setup
100100
uses: actions/github-script@v8

.github/workflows/drop-pacman-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
owner: ${{ github.repository_owner }}
3535
repositories: ${{ matrix.sdk }}
3636
- name: clone ${{ matrix.sdk }}
37-
uses: actions/checkout@v5
37+
uses: actions/checkout@v6
3838
with:
3939
persist-credentials: true
4040
repository: ${{ github.repository_owner }}/${{ matrix.sdk }}

.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@v5
56+
uses: actions/checkout@v6
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@v5
380+
uses: actions/checkout@v6
381381
- name: Download pkg-${{env.ARCHITECTURE}}
382382
uses: actions/download-artifact@v6
383383
with:
@@ -609,7 +609,7 @@ jobs:
609609
path: sha256sums
610610
- name: clone git-for-windows-automation
611611
if: needs.pkg.outputs.check-run-state != '' && always()
612-
uses: actions/checkout@v5
612+
uses: actions/checkout@v6
613613
- name: restore check-run state
614614
if: needs.pkg.outputs.check-run-state != '' && always()
615615
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@v5
48+
- uses: actions/checkout@v6
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@v5
22+
- uses: actions/checkout@v6
2323
- name: identify actor
2424
id: actor
2525
uses: actions/github-script@v8

.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@v5
38+
- uses: actions/checkout@v6
3939
- name: The `release` branch must be up to date
4040
uses: actions/github-script@v8
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@v5
24+
- uses: actions/checkout@v6
2525

2626
- name: Configure build
2727
shell: bash

0 commit comments

Comments
 (0)