Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update patch tuesday #987

Merged
merged 1 commit into from
Oct 26, 2024
Merged
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
6 changes: 3 additions & 3 deletions .github/workflows/build-email-function.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1
with:
ref: ${{ inputs.git_ref }}

- uses: oven-sh/[email protected]
with:
bun-version: 1.1.8

- uses: actions/cache@v4.0.2
- uses: actions/cache@v4.1.1
id: node-modules-cache
with:
path: bun-packages/node_modules
Expand All @@ -38,7 +38,7 @@ jobs:
working-directory: bun-packages/packages/email-function

- name: Store artifact
uses: actions/[email protected].0
uses: actions/[email protected].3
with:
name: email-function-dist
path: bun-packages/packages/email-function/dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4.1.7
uses: actions/checkout@v4.2.1

- name: Self-hosted Renovate
uses: renovatebot/github-action@v40.2.10
uses: renovatebot/github-action@v40.3.4
with:
configurationFile: .github/renovate-config.js
token: ${{ secrets.RENOVATE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraform-apply.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
environment: "terraform-${{ inputs.environment }}"

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- name: Read .terraform-version
id: terraform_version
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/terraform-plan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
environment: terraform-${{ inputs.environment || 'test' }}

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- name: Read .terraform-version
id: terraform_version
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
run: exit 1

- name: Store artifact
uses: actions/[email protected].0
uses: actions/[email protected].3
if: inputs.store_plan || false
with:
name: tfplan
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/terraform-validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- name: Read .terraform-version
id: terraform_version
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/validate-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- uses: actions/[email protected]
with:
node-version-file: "app/.nvmrc"

- uses: actions/cache@v4.0.2
- uses: actions/cache@v4.1.1
id: node-modules-cache
with:
path: app/node_modules
Expand Down Expand Up @@ -58,13 +58,13 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- uses: actions/[email protected]
with:
node-version-file: "app/.nvmrc"

- uses: actions/cache@v4.0.2
- uses: actions/cache@v4.1.1
id: node-modules-cache
with:
path: app/node_modules
Expand All @@ -84,13 +84,13 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- uses: actions/[email protected]
with:
node-version-file: "app/.nvmrc"

- uses: actions/cache@v4.0.2
- uses: actions/cache@v4.1.1
id: node-modules-cache
with:
path: app/node_modules
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate-email-function.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v4.1.7
- uses: actions/checkout@v4.2.1

- name: Set up Biome
uses: biomejs/setup-biome@v2
Expand Down
2 changes: 1 addition & 1 deletion app/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# - https://github.com/nodejs/docker-node/blob/main/20/bookworm/Dockerfile
# - https://github.com/devcontainers/images

FROM node:20.17.0-bookworm
FROM node:20.18.0-bookworm

# Give the node user passwordless sudo. This is required to change the ownership of the node_modules directory (see devcontainer.json).
RUN apt-get update \
Expand Down
2 changes: 1 addition & 1 deletion app/.nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.17.0
20.18.0
Loading
Loading