Skip to content

Commit 3d98d62

Browse files
build(deps): bump the actions group across 1 directory with 2 updates
Bumps the actions group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [github/gh-aw](https://github.com/github/gh-aw). Updates `actions/checkout` from 6 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6...v7) Updates `github/gh-aw` from 0.71.5 to 0.80.9 - [Release notes](https://github.com/github/gh-aw/releases) - [Changelog](https://github.com/github/gh-aw/blob/main/CHANGELOG.md) - [Commits](github/gh-aw@v0.71.5...v0.80.9) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: github/gh-aw dependency-version: 0.80.9 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent b94546c commit 3d98d62

14 files changed

Lines changed: 27 additions & 27 deletions

.github/workflows/check-agentic-workflows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
check-lock-files:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v6
17+
- uses: actions/checkout@v7
1818

1919
- name: Install gh-aw
2020
run: curl -sL https://raw.githubusercontent.com/github/gh-aw/main/install-gh-aw.sh | bash

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
outputs:
2525
core: ${{ steps.filter.outputs.core }}
2626
steps:
27-
- uses: actions/checkout@v6
27+
- uses: actions/checkout@v7
2828
# cspell:ignore dorny
2929
- uses: dorny/paths-filter@fbd0ab8f3e69293af611ebaee6363fc25e6d187d # v4
3030
id: filter

.github/workflows/codeql.yml

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

3838
steps:
3939
- name: Checkout repository
40-
uses: actions/checkout@v6
40+
uses: actions/checkout@v7
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL

.github/workflows/commenter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
!startsWith(github.head_ref, 'publish/')
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222
- name: Prepare artifact directory
2323
run: mkdir -p "${{ runner.temp }}/comment-artifact"
2424
- uses: actions/download-artifact@v8

.github/workflows/consistency.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
!startsWith(github.head_ref, 'backmerge/') &&
2727
!startsWith(github.head_ref, 'revert-')
2828
steps:
29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030
with:
3131
fetch-depth: 0 ## Needed for Changesets to find `main` branch
3232

@@ -57,7 +57,7 @@ jobs:
5757
name: Spell check
5858
runs-on: ubuntu-latest
5959
steps:
60-
- uses: actions/checkout@v6
60+
- uses: actions/checkout@v7
6161
with:
6262
submodules: recursive
6363
- uses: ./.github/actions/setup
@@ -73,7 +73,7 @@ jobs:
7373
name: Format
7474
runs-on: ubuntu-latest
7575
steps:
76-
- uses: actions/checkout@v6
76+
- uses: actions/checkout@v7
7777
with:
7878
submodules: recursive
7979
- uses: ./.github/actions/setup
@@ -92,7 +92,7 @@ jobs:
9292
name: Lint
9393
runs-on: ubuntu-latest
9494
steps:
95-
- uses: actions/checkout@v6
95+
- uses: actions/checkout@v7
9696
with:
9797
submodules: recursive
9898

@@ -122,7 +122,7 @@ jobs:
122122
name: Versions consistency
123123
runs-on: ubuntu-latest
124124
steps:
125-
- uses: actions/checkout@v6
125+
- uses: actions/checkout@v7
126126
with:
127127
submodules: recursive
128128

.github/workflows/copilot-setup-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919

2020
steps:
2121
- name: Checkout repository
22-
uses: actions/checkout@v6
22+
uses: actions/checkout@v7
2323
- name: Install gh-aw extension
24-
uses: github/gh-aw/actions/setup-cli@v0.71.5
24+
uses: github/gh-aw/actions/setup-cli@v0.80.9
2525
with:
2626
version: v0.50.1

.github/workflows/core-ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
if: runner.os == 'Windows'
2727
run: git config --global core.longpaths true
2828

29-
- uses: actions/checkout@v6
29+
- uses: actions/checkout@v7
3030

3131
- uses: ./.github/actions/setup
3232
with:
@@ -65,7 +65,7 @@ jobs:
6565
runs-on: ubuntu-latest
6666

6767
steps:
68-
- uses: actions/checkout@v6
68+
- uses: actions/checkout@v7
6969

7070
- uses: ./.github/actions/setup
7171

@@ -91,7 +91,7 @@ jobs:
9191
DISPLAY: ":99"
9292

9393
steps:
94-
- uses: actions/checkout@v6
94+
- uses: actions/checkout@v7
9595

9696
- uses: ./.github/actions/setup
9797

@@ -146,7 +146,7 @@ jobs:
146146
runs-on: ubuntu-latest
147147

148148
steps:
149-
- uses: actions/checkout@v6
149+
- uses: actions/checkout@v7
150150

151151
- name: Build Docker image
152152
run: docker build -f ./docker/Dockerfile .

.github/workflows/external-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
node-version: lts/*
3939

4040
- name: Checkout Azure/typespec-azure repo
41-
uses: actions/checkout@v6
41+
uses: actions/checkout@v7
4242
with:
4343
repository: Azure/typespec-azure
4444
submodules: true
@@ -77,7 +77,7 @@ jobs:
7777

7878
steps:
7979
- name: Checkout repository
80-
uses: actions/checkout@v6
80+
uses: actions/checkout@v7
8181
with:
8282
submodules: true
8383
fetch-depth: 0

.github/workflows/merge-release-in-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Checkout
24-
uses: actions/checkout@v6
24+
uses: actions/checkout@v7
2525

2626
- name: Generate branch name
2727
id: branchname

.github/workflows/preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
steps:
23-
- uses: actions/checkout@v6
23+
- uses: actions/checkout@v7
2424
with:
2525
fetch-depth: 0 ## Needed for Changesets to find `main` branch
2626

0 commit comments

Comments
 (0)