Skip to content

Commit 55fa412

Browse files
chore(deps): bump actions/checkout from 6 to 7
Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 0b99832 commit 55fa412

6 files changed

Lines changed: 17 additions & 17 deletions

File tree

.github/workflows/automated-updates-to-sam-cli.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
fi
2525
2626
- name: Checkout App Templates
27-
uses: actions/checkout@v6
27+
uses: actions/checkout@v7
2828
with:
2929
repository: aws/aws-sam-cli-app-templates
3030
path: aws-sam-cli-app-templates
3131

3232
- name: Checkout SAM CLI
33-
uses: actions/checkout@v6
33+
uses: actions/checkout@v7
3434
with:
3535
repository: aws/aws-sam-cli
3636
path: aws-sam-cli
@@ -79,15 +79,15 @@ jobs:
7979
fi
8080
8181
- name: Checkout SAM
82-
uses: actions/checkout@v6
82+
uses: actions/checkout@v7
8383
with:
8484
repository: aws/serverless-application-model
8585
path: serverless-application-model
8686
ref: main
8787
fetch-depth: 0
8888

8989
- name: Checkout SAM CLI
90-
uses: actions/checkout@v6
90+
uses: actions/checkout@v7
9191
with:
9292
repository: aws/aws-sam-cli
9393
path: aws-sam-cli
@@ -148,15 +148,15 @@ jobs:
148148
fi
149149
150150
- name: Checkout Lambda Builders
151-
uses: actions/checkout@v6
151+
uses: actions/checkout@v7
152152
with:
153153
repository: aws/aws-lambda-builders
154154
path: aws-lambda-builders
155155
ref: main
156156
fetch-depth: 0
157157

158158
- name: Checkout SAM CLI
159-
uses: actions/checkout@v6
159+
uses: actions/checkout@v7
160160
with:
161161
repository: aws/aws-sam-cli
162162
path: aws-sam-cli

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
mkdir "D:\\Temp"
6565
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
6666
if: ${{ matrix.os == 'windows-latest' }}
67-
- uses: actions/checkout@v6
67+
- uses: actions/checkout@v7
6868
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
6969
with:
7070
python-version: ${{ matrix.python }}
@@ -82,7 +82,7 @@ jobs:
8282
contents: read
8383
runs-on: ubuntu-latest
8484
steps:
85-
- uses: actions/checkout@v6
85+
- uses: actions/checkout@v7
8686
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
8787
with:
8888
python-version: "3.11"
@@ -152,7 +152,7 @@ jobs:
152152
tests_config:
153153
name: "durable-functions"
154154
steps:
155-
- uses: actions/checkout@v6
155+
- uses: actions/checkout@v7
156156
- name: Set TEMP to D:/Temp
157157
run: |
158158
mkdir "D:\\Temp"
@@ -241,7 +241,7 @@ jobs:
241241
params: "-n 4 tests/smoke tests/functional"
242242
env_vars: "fourth-quarter"
243243
steps:
244-
- uses: actions/checkout@v6
244+
- uses: actions/checkout@v7
245245
- name: Set TEMP to D:/Temp
246246
run: |
247247
mkdir "D:\\Temp"
@@ -273,7 +273,7 @@ jobs:
273273
- ubuntu-latest
274274
- windows-latest
275275
steps:
276-
- uses: actions/checkout@v6
276+
- uses: actions/checkout@v7
277277
- name: Set TEMP to D:/Temp
278278
run: |
279279
mkdir "D:\\Temp"

.github/workflows/codeql.yml

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

4343
steps:
4444
- name: Checkout repository
45-
uses: actions/checkout@v6
45+
uses: actions/checkout@v7
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL

.github/workflows/integration-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114
fi
115115
116116
- name: Checkout code
117-
uses: actions/checkout@v6
117+
uses: actions/checkout@v7
118118
with:
119119
ref: ${{ (env.TEST_TYPE == 'nightly-release' && github.event.action == 'published') && 'nightly-builds' || (github.event_name == 'schedule' && 'develop' || github.ref) }}
120120

.github/workflows/update-reproducibles.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
if: github.repository_owner == 'aws' && github.event.pull_request.head.repo.full_name == github.repository
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@v6
21+
- uses: actions/checkout@v7
2222
with:
2323
ref: ${{ github.head_ref }}
2424
token: ${{ secrets.GITHUB_TOKEN }}
@@ -42,7 +42,7 @@ jobs:
4242
if: github.repository_owner == 'aws' && github.event.pull_request.head.repo.full_name != github.repository
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v6
45+
- uses: actions/checkout@v7
4646
- uses: actions/setup-python@v6
4747
with:
4848
python-version: "3.11"

.github/workflows/validate_pyinstaller.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
steps:
22-
- uses: actions/checkout@v6
22+
- uses: actions/checkout@v7
2323
- name: Make installer script executable
2424
run: chmod +x ./installer/pyinstaller/build-linux.sh
2525
- name: Build PyInstaller in manylinux container
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
fail-fast: false
5454
steps:
55-
- uses: actions/checkout@v6
55+
- uses: actions/checkout@v7
5656
- uses: actions/setup-python@v6
5757
with:
5858
python-version: "3.11"

0 commit comments

Comments
 (0)