Skip to content

Commit 03eddaa

Browse files
chore(deps): bump the github-actions group with 6 updates (#143)
* chore(deps): bump the github-actions group with 6 updates Bumps the github-actions group with 6 updates: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) | `3` | `4` | | [docker/login-action](https://github.com/docker/login-action) | `3` | `4` | | [docker/build-push-action](https://github.com/docker/build-push-action) | `6` | `7` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `docker/setup-buildx-action` from 3 to 4 - [Release notes](https://github.com/docker/setup-buildx-action/releases) - [Commits](docker/setup-buildx-action@v3...v4) Updates `docker/login-action` from 3 to 4 - [Release notes](https://github.com/docker/login-action/releases) - [Commits](docker/login-action@v3...v4) Updates `docker/build-push-action` from 6 to 7 - [Release notes](https://github.com/docker/build-push-action/releases) - [Commits](docker/build-push-action@v6...v7) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/setup-buildx-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/login-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: docker/build-push-action dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> * Initial plan (#145) Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Copilot <198982749+Copilot@users.noreply.github.com>
1 parent 837ad4c commit 03eddaa

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
timeout-minutes: 30
3232
steps:
3333
- name: Checkout main
34-
uses: actions/checkout@v4
34+
uses: actions/checkout@v6
3535
with:
3636
ref: main
3737
fetch-depth: 0
@@ -56,7 +56,7 @@ jobs:
5656
5757
- name: Setup Node
5858
if: steps.freshness.outputs.should_release == 'true'
59-
uses: actions/setup-node@v4
59+
uses: actions/setup-node@v6
6060
with:
6161
node-version: 20
6262

@@ -143,19 +143,19 @@ jobs:
143143
144144
- name: Set up Docker Buildx
145145
if: steps.freshness.outputs.should_release == 'true' && steps.version.outputs.can_publish_version == 'true' && steps.tag.outputs.tag_available == 'true'
146-
uses: docker/setup-buildx-action@v3
146+
uses: docker/setup-buildx-action@v4
147147

148148
- name: Log in to GHCR
149149
if: steps.freshness.outputs.should_release == 'true' && steps.version.outputs.can_publish_version == 'true' && steps.tag.outputs.tag_available == 'true'
150-
uses: docker/login-action@v3
150+
uses: docker/login-action@v4
151151
with:
152152
registry: ghcr.io
153153
username: ${{ github.actor }}
154154
password: ${{ secrets.GITHUB_TOKEN }}
155155

156156
- name: Build and push app image
157157
if: steps.freshness.outputs.should_release == 'true' && steps.version.outputs.can_publish_version == 'true' && steps.tag.outputs.tag_available == 'true'
158-
uses: docker/build-push-action@v6
158+
uses: docker/build-push-action@v7
159159
with:
160160
context: .
161161
file: ./docker/app.Dockerfile

.github/workflows/security.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Initialize CodeQL
23-
uses: github/codeql-action/init@v3
23+
uses: github/codeql-action/init@v4
2424
with:
2525
languages: javascript-typescript
2626

2727
- name: Autobuild
28-
uses: github/codeql-action/autobuild@v3
28+
uses: github/codeql-action/autobuild@v4
2929

3030
- name: Analyze
31-
uses: github/codeql-action/analyze@v3
31+
uses: github/codeql-action/analyze@v4

.github/workflows/verify.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
code_changed: ${{ steps.filter.outputs.code }}
1919
steps:
2020
- name: Checkout
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v6
2222
with:
2323
fetch-depth: 0
2424

@@ -90,7 +90,7 @@ jobs:
9090
NEXT_PUBLIC_API_URL: http://localhost:3000
9191
steps:
9292
- name: Checkout
93-
uses: actions/checkout@v4
93+
uses: actions/checkout@v6
9494
with:
9595
fetch-depth: 0
9696

@@ -100,7 +100,7 @@ jobs:
100100
version: 9
101101

102102
- name: Setup Node
103-
uses: actions/setup-node@v4
103+
uses: actions/setup-node@v6
104104
with:
105105
node-version: 20
106106
cache: pnpm

0 commit comments

Comments
 (0)