Skip to content
This repository has been archived by the owner on Dec 28, 2023. It is now read-only.

Commit

Permalink
fix: update dependencies to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Sep 18, 2023
1 parent b1ef2cc commit c0e3f7c
Show file tree
Hide file tree
Showing 11 changed files with 988 additions and 675 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
language: ['javascript']

steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'

- name: 'Initialize CodeQL'
uses: 'github/codeql-action/init@v2'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'

- name: 'Setup Node.js'
uses: 'actions/[email protected]'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'

- name: 'Setup Node.js'
uses: 'actions/[email protected]'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
release:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'
with:
fetch-depth: 0
persist-credentials: false

- name: 'Import GPG key'
uses: 'crazy-max/ghaction-import-gpg@v5.3.0'
uses: 'crazy-max/ghaction-import-gpg@v6.0.0'
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
git_user_signingkey: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
test-unit:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'

- name: 'Setup Node.js'
uses: 'actions/[email protected]'
Expand All @@ -27,7 +27,7 @@ jobs:
test-e2e:
runs-on: 'ubuntu-latest'
steps:
- uses: 'actions/checkout@v3.6.0'
- uses: 'actions/checkout@v4.0.0'

- name: 'Setup Node.js'
uses: 'actions/[email protected]'
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM node:20.5.1 AS builder-dependencies
FROM node:20.6.1 AS builder-dependencies
WORKDIR /usr/src/application
COPY ./.npmrc ./
COPY ./package*.json ./
RUN npm clean-install

FROM node:20.5.1 AS builder
FROM node:20.6.1 AS builder
WORKDIR /usr/src/application
COPY --from=builder-dependencies /usr/src/application/node_modules ./node_modules
COPY ./ ./
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

Thream's website to stay close with your friends and communities.

It uses [Thream/api](https://github.com/Thream/api) [v1.2.8](https://github.com/Thream/api/releases/tag/v1.2.8).
It uses [Thream/api](https://github.com/Thream/api) [v1.2.9](https://github.com/Thream/api/releases/tag/v1.2.9).

## ⚙️ Getting Started

Expand Down
Loading

0 comments on commit c0e3f7c

Please sign in to comment.