Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/automated-updates-to-sam-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
fi

- name: Checkout App Templates
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: aws/aws-sam-cli-app-templates
path: aws-sam-cli-app-templates

- name: Checkout SAM CLI
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: aws/aws-sam-cli
path: aws-sam-cli
Expand Down Expand Up @@ -79,15 +79,15 @@ jobs:
fi

- name: Checkout SAM
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: aws/serverless-application-model
path: serverless-application-model
ref: main
fetch-depth: 0

- name: Checkout SAM CLI
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: aws/aws-sam-cli
path: aws-sam-cli
Expand Down Expand Up @@ -148,15 +148,15 @@ jobs:
fi

- name: Checkout Lambda Builders
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: aws/aws-lambda-builders
path: aws-lambda-builders
ref: main
fetch-depth: 0

- name: Checkout SAM CLI
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: aws/aws-sam-cli
path: aws-sam-cli
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
mkdir "D:\\Temp"
echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
if: ${{ matrix.os == 'windows-latest' }}
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
python-version: ${{ matrix.python }}
Expand All @@ -82,7 +82,7 @@ jobs:
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
with:
python-version: "3.11"
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
tests_config:
name: "durable-functions"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
params: "-n 4 tests/smoke tests/functional"
env_vars: "fourth-quarter"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
Expand Down Expand Up @@ -273,7 +273,7 @@ jobs:
- ubuntu-latest
- windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Set TEMP to D:/Temp
run: |
mkdir "D:\\Temp"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ jobs:
fi

- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ (env.TEST_TYPE == 'nightly-release' && github.event.action == 'published') && 'nightly-builds' || (github.event_name == 'schedule' && 'develop' || github.ref) }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update-reproducibles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
if: github.repository_owner == 'aws' && github.event.pull_request.head.repo.full_name == github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -42,7 +42,7 @@ jobs:
if: github.repository_owner == 'aws' && github.event.pull_request.head.repo.full_name != github.repository
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.11"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate_pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Make installer script executable
run: chmod +x ./installer/pyinstaller/build-linux.sh
- name: Build PyInstaller in manylinux container
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-python@v6
with:
python-version: "3.11"
Expand Down
Loading