Skip to content

Commit

Permalink
Upgrade Lambda runtime to Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
simenheg committed Feb 28, 2024
1 parent 2292702 commit fecddba
Show file tree
Hide file tree
Showing 11 changed files with 3,775 additions and 1,000 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.11'
- name: Install Python dependencies
run: pip install tox
- name: Test with tox
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.11'
- name: Install Python dependencies
run: pip install tox
- name: Test with tox
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
name: "Pull Request Labeler"

on:
- pull_request_target
pull_request:

jobs:
triage:
runs-on: ubuntu-latest

permissions:
actions: read
contents: read
issues: write
pull-requests: write

steps:
- uses: actions/labeler@main
- uses: actions/labeler@ac9175f8a1f3625fd0d4fb234536d26811351594 # v4.3.0
with:
repo-token: "${{ secrets.GITHUB_TOKEN }}"
4 changes: 2 additions & 2 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.11'
- name: Install dependencies
run: pip install tox
- name: Test with tox
Expand Down
Loading

0 comments on commit fecddba

Please sign in to comment.