Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.

Commit ba1fbe1

Browse files
chore(deps): update github actions
1 parent 98ea135 commit ba1fbe1

File tree

7 files changed

+34
-34
lines changed

7 files changed

+34
-34
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
test:
1313
name: Lint & Test Build
1414
if: github.event_name == 'pull_request'
15-
runs-on: ubuntu-22.04
15+
runs-on: ubuntu-24.04
1616
container: node:18.18.2-alpine
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v6
2020
- name: Install dependencies
2121
env:
2222
HUSKY: 0
@@ -31,27 +31,27 @@ jobs:
3131
build_and_push:
3232
name: Build & Publish Docker Images
3333
if: github.ref == 'refs/heads/develop' && !contains(github.event.head_commit.message, '[skip ci]')
34-
runs-on: ubuntu-22.04
34+
runs-on: ubuntu-24.04
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v6
3838
- name: Set up QEMU
39-
uses: docker/setup-qemu-action@v2
39+
uses: docker/setup-qemu-action@v3
4040
- name: Set up Docker Buildx
41-
uses: docker/setup-buildx-action@v2
41+
uses: docker/setup-buildx-action@v3
4242
- name: Log in to Docker Hub
43-
uses: docker/login-action@v2
43+
uses: docker/login-action@v3
4444
with:
4545
username: ${{ secrets.DOCKER_USERNAME }}
4646
password: ${{ secrets.DOCKER_TOKEN }}
4747
- name: Log in to GitHub Container Registry
48-
uses: docker/login-action@v2
48+
uses: docker/login-action@v3
4949
with:
5050
registry: ghcr.io
5151
username: ${{ github.repository_owner }}
5252
password: ${{ secrets.GITHUB_TOKEN }}
5353
- name: Build and push
54-
uses: docker/build-push-action@v3
54+
uses: docker/build-push-action@v6
5555
with:
5656
context: .
5757
file: ./Dockerfile
@@ -69,7 +69,7 @@ jobs:
6969
name: Send Discord Notification
7070
needs: build_and_push
7171
if: always() && github.event_name != 'pull_request' && !contains(github.event.head_commit.message, '[skip ci]')
72-
runs-on: ubuntu-22.04
72+
runs-on: ubuntu-24.04
7373
steps:
7474
- name: Get Build Job Status
7575
uses: technote-space/workflow-conclusion-action@v3

.github/workflows/codeql.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,18 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v6
2828

2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v4
3131
with:
3232
languages: ${{ matrix.language }}
3333
queries: +security-and-quality
3434

3535
- name: Autobuild
36-
uses: github/codeql-action/autobuild@v2
36+
uses: github/codeql-action/autobuild@v4
3737

3838
- name: Perform CodeQL Analysis
39-
uses: github/codeql-action/analyze@v2
39+
uses: github/codeql-action/analyze@v4
4040
with:
4141
category: '/language:${{ matrix.language }}'

.github/workflows/cypress.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v6
1717
- name: Cypress run
1818
uses: cypress-io/github-action@v4
1919
with:

.github/workflows/deploy_docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
permissions:
1212
contents: write
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v6
1515
- name: Generate Swagger UI
1616
uses: Legion2/swagger-ui-action@v1
1717
with:

.github/workflows/preview.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ on:
88
jobs:
99
build_and_push:
1010
name: Build & Publish Docker Preview Images
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v6
1515
- name: Get the version
1616
id: get_version
1717
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
1818
- name: Set up QEMU
19-
uses: docker/setup-qemu-action@v2
19+
uses: docker/setup-qemu-action@v3
2020
- name: Set up Docker Buildx
21-
uses: docker/setup-buildx-action@v2
21+
uses: docker/setup-buildx-action@v3
2222
- name: Log in to Docker Hub
23-
uses: docker/login-action@v2
23+
uses: docker/login-action@v3
2424
with:
2525
username: ${{ secrets.DOCKER_USERNAME }}
2626
password: ${{ secrets.DOCKER_TOKEN }}
2727
- name: Log in to GitHub Container Registry
28-
uses: docker/login-action@v2
28+
uses: docker/login-action@v3
2929
with:
3030
registry: ghcr.io
3131
username: ${{ github.repository_owner }}
3232
password: ${{ secrets.GITHUB_TOKEN }}
3333
- name: Build and push
34-
uses: docker/build-push-action@v3
34+
uses: docker/build-push-action@v6
3535
with:
3636
context: .
3737
file: ./Dockerfile

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,27 +8,27 @@ on:
88
jobs:
99
semantic-release:
1010
name: Tag and release latest version
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-24.04
1212
steps:
1313
- name: Checkout
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v6
1515
with:
1616
fetch-depth: 0
1717
- name: Set up Node.js
18-
uses: actions/setup-node@v3
18+
uses: actions/setup-node@v6
1919
with:
20-
node-version: 20
20+
node-version: 24
2121
- name: Set up QEMU
22-
uses: docker/setup-qemu-action@v2
22+
uses: docker/setup-qemu-action@v3
2323
- name: Set up Docker Buildx
24-
uses: docker/setup-buildx-action@v2
24+
uses: docker/setup-buildx-action@v3
2525
- name: Log in to Docker Hub
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
username: ${{ secrets.DOCKER_USERNAME }}
2929
password: ${{ secrets.DOCKER_TOKEN }}
3030
- name: Log in to GitHub Container Registry
31-
uses: docker/login-action@v2
31+
uses: docker/login-action@v3
3232
with:
3333
registry: ghcr.io
3434
username: ${{ github.repository_owner }}
@@ -101,7 +101,7 @@ jobs:
101101
name: Send Discord Notification
102102
needs: semantic-release
103103
if: always()
104-
runs-on: ubuntu-22.04
104+
runs-on: ubuntu-24.04
105105
steps:
106106
- name: Get Build Job Status
107107
uses: technote-space/workflow-conclusion-action@v3

.github/workflows/support.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ on:
66

77
jobs:
88
support:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-24.04
1010
steps:
11-
- uses: dessant/support-requests@v2
11+
- uses: dessant/support-requests@v4
1212
with:
1313
github-token: ${{ github.token }}
1414
support-label: 'support'

0 commit comments

Comments
 (0)