Skip to content
This repository has been archived by the owner on Jul 14, 2024. It is now read-only.

Commit

Permalink
Merge dev to main (#98)
Browse files Browse the repository at this point in the history
* fix(js): update prettier-plugin-svelte to 3.2.5

| datasource | package                | from  | to    |
| ---------- | ---------------------- | ----- | ----- |
| npm        | prettier-plugin-svelte | 3.2.4 | 3.2.5 |

* feat(js): update typescript to 5.5.2

| datasource | package    | from  | to    |
| ---------- | ---------- | ----- | ----- |
| npm        | typescript | 5.4.5 | 5.5.2 |

* fix(go): update module github.com/go-chi/chi/v5 to v5.0.14

| datasource | package                  | from    | to      |
| ---------- | ------------------------ | ------- | ------- |
| go         | github.com/go-chi/chi/v5 | v5.0.13 | v5.0.14 |

* fix(js): update svelte-check to 3.8.2

| datasource | package      | from  | to    |
| ---------- | ------------ | ----- | ----- |
| npm        | svelte-check | 3.8.1 | 3.8.2 |

* fix(js): update svelte-check to 3.8.3

| datasource | package      | from  | to    |
| ---------- | ------------ | ----- | ----- |
| npm        | svelte-check | 3.8.2 | 3.8.3 |

* fix(js): update svelte-check to 3.8.4

| datasource | package      | from  | to    |
| ---------- | ------------ | ----- | ----- |
| npm        | svelte-check | 3.8.3 | 3.8.4 |

* fix(js): update vite to 5.3.2

| datasource | package | from  | to    |
| ---------- | ------- | ----- | ----- |
| npm        | vite    | 5.3.1 | 5.3.2 |

* feat(go): update module github.com/go-chi/chi/v5 to v5.1.0

| datasource | package                  | from    | to     |
| ---------- | ------------------------ | ------- | ------ |
| go         | github.com/go-chi/chi/v5 | v5.0.14 | v5.1.0 |

* chore(deps): update chart common to 3.2.1

| datasource | package | from  | to    |
| ---------- | ------- | ----- | ----- |
| helm       | common  | 0.2.2 | 3.2.1 |

* feat(github-action)!: Update docker/build-push-action action to v6

| datasource  | package                  | from | to |
| ----------- | ------------------------ | ---- | -- |
| github-tags | docker/build-push-action | v5   | v6 |

* fix(js): update @sveltejs/kit to 2.5.18

| datasource | package       | from   | to     |
| ---------- | ------------- | ------ | ------ |
| npm        | @sveltejs/kit | 2.5.17 | 2.5.18 |

* fix(js): update typescript to 5.5.3

| datasource | package    | from  | to    |
| ---------- | ---------- | ----- | ----- |
| npm        | typescript | 5.5.2 | 5.5.3 |

* feat(github-action): update renovatebot/github-action action to v40.2.0

| datasource  | package                   | from     | to      |
| ----------- | ------------------------- | -------- | ------- |
| github-tags | renovatebot/github-action | v40.1.12 | v40.2.0 |

* fix(container): update image docker.io/golang to v1.22.5

| datasource | package          | from   | to     |
| ---------- | ---------------- | ------ | ------ |
| docker     | docker.io/golang | 1.22.4 | 1.22.5 |

* fix(js): update vite to 5.3.3

| datasource | package | from  | to    |
| ---------- | ------- | ----- | ----- |
| npm        | vite    | 5.3.2 | 5.3.3 |

* feat(container): update image docker.io/node to v22.4 (#97)

| datasource | package        | from | to   |
| ---------- | -------------- | ---- | ---- |
| docker     | docker.io/node | 22.3 | 22.4 |

Co-authored-by: ullberg-github-app <ullberg-github-app[bot]@users.noreply.github.com>

---------

Co-authored-by: ullberg-github-app <ullberg-github-app[bot]@users.noreply.github.com>
Co-authored-by: ullberg-github-app[bot] <117079803+ullberg-github-app[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Jul 3, 2024
1 parent 09ee58c commit 9e26add
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 359 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and Push
if: github.event_name != 'pull_request'
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/schedule-renovate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
echo "DRY_RUN=${{ github.event.inputs.dryRun || env.DRY_RUN }}" >> "${GITHUB_ENV}"
echo "LOG_LEVEL=${{ github.event.inputs.logLevel || env.LOG_LEVEL }}" >> "${GITHUB_ENV}"
- name: Renovate
uses: renovatebot/github-action@v40.1.12
uses: renovatebot/github-action@v40.2.0
with:
configurationFile: "${{ env.RENOVATE_CONFIG_FILE }}"
token: "x-access-token:${{ steps.generate-token.outputs.token }}"
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/node:22.3-alpine AS build-frontend
FROM docker.io/node:22.4-alpine AS build-frontend

WORKDIR /build

Expand All @@ -10,7 +10,7 @@ RUN npm install

RUN npm run build

FROM docker.io/golang:1.22.4-alpine AS build
FROM docker.io/golang:1.22.5-alpine AS build

ARG TARGETPLATFORM
ENV TARGETPLATFORM=${TARGETPLATFORM:-linux/amd64}
Expand Down
2 changes: 1 addition & 1 deletion charts/hajimari/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ maintainers:
email: [email protected]
dependencies:
- name: common
version: 0.2.2
version: 3.2.1
repository: https://bjw-s.github.io/helm-charts/
Loading

0 comments on commit 9e26add

Please sign in to comment.