Skip to content

Commit

Permalink
chore(deps): GitHub actions updates (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminparnell committed Apr 8, 2024
1 parent 3e15ec5 commit e1893ae
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
matrix:
# These correlate to the latest two runtimes supported by Lambda
# See: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
node: [ 16, 18 ]
node: [16, 18]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
Expand All @@ -28,9 +28,9 @@ jobs:
matrix:
# These correlate to the latest two runtimes supported by Lambda
# See: https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html
node: [ 16, 18 ]
node: [16, 18]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: Publish Package
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
- "v[0-9]+.[0-9]+.[0-9]+"

jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
Expand All @@ -37,7 +37,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "18"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/version-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: google-github-actions/release-please-action@v3
- uses: google-github-actions/release-please-action@v4
with:
release-type: node
package-name: "aws-constructs"
token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
manifest-file: .release-please-manifest.json
7 changes: 7 additions & 0 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"packages": {
"./": {
"package-name": "aws-constructs"
}
}
}

0 comments on commit e1893ae

Please sign in to comment.