Skip to content

Commit

Permalink
actions/checkout@v4 and Node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcarboni committed Aug 24, 2024
1 parent 4069bf4 commit 1f17e26
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cdk-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cdk-patterns.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lambda-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lambda-fileupload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lambda-local.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lambda-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v3
with:
node-version: '18.x'
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: git setup
Expand Down
1 change: 1 addition & 0 deletions cdk-patterns/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ A couple of highlights:
* `ghaUser` - if you use Github Actions, this generates an IAM user access key with permission to deploy to resources defined in your stack (see also `addGha*` functions such as `addGhaSecret`, `addGhaVariable`, `addGhaLambda` etc.)

## Release notes
* **0.6.4**: `actions/checkout@v4` and Node `20.x`
* **0.6.3**: Add `DynamoDbStreamFunction` - a Lambda that reads a DynamoDB table stream
* **0.6.2**: Update default Python runtime to 3.12
* **0.6.1**: Use `ContainerFunction` construct id as-is in (rather than appending `Function` to it).
Expand Down
1 change: 1 addition & 0 deletions lambda-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ This is a piece of useful boilerplate to handle the mechanics of routing, header

## Releae notes

* `0.3.3`: `actions/checkout@v4` and Node `20.x`
* `0.3.2`: Add `ContextBuilder` to have the option to populate `Request.context` with access to the parsed `Request`.
* `0.3.1`: Add path parameter parsing and a `Request.context` object to allow custom values to be passed to handter functions.
* `0.2.4`: Allow Request.body to be `any`. Return simple text responses for handled errors (404, 500, 405).
Expand Down
1 change: 1 addition & 0 deletions lambda-fileupload/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ This is intended to provide you with the operations you'll mostly need most of t

## Release notes

* `0.0.8`: `actions/checkout@v4` and Node `20.x`
* `0.0.7`: Fix default validity windows of `getUrl` and `putUrl` to match the documentation.

## Functions
Expand Down
1 change: 1 addition & 0 deletions s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ A collection of wrapper functions for the AWS SDKv3 that provide simplified CRUD
This is intended to provide you with the operations you'll mostly need most of the time and, if you have an edge-case, you can use this as example code to help you get what you need done more easily.

## Changelog
* **0.0.12**: `actions/checkout@v4` and Node `20.x`
* **0.0.11**: Add `copyObject` and remove `console.error()` output in `src/s3.ts`
* **0.0.10**: Fix `moveObject` and shortcut return from `deleteObjects` if the object list is empty. Also make error messages unique so we can distinguish if an error is coming from `deleteObject` or `deleteObjects`. Also added generic type information to `getJson` and `putJson`.
* **0.0.9**: Add `deleteObjects`
Expand Down

0 comments on commit 1f17e26

Please sign in to comment.