Skip to content

Commit ad0d9c1

Browse files
committed
Update github actions
1 parent 9b865aa commit ad0d9c1

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
with:
3535
# We must fetch at least the immediate parents so that if this is
3636
# a pull request then we can checkout the head.

.github/workflows/nodejs.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616

1717
strategy:
1818
matrix:
19-
node-version: [16.x, 18.x, 20.x]
19+
node-version: [20.x, 22.x, 24.x]
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- name: Use Node.js ${{ matrix.node-version }}
24-
uses: actions/setup-node@v3
24+
uses: actions/setup-node@v4
2525
with:
2626
node-version: ${{ matrix.node-version }}
2727
- run: npm ci
@@ -36,10 +36,10 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Derive Docker tags
4141
id: meta
42-
uses: docker/metadata-action@v4
42+
uses: docker/metadata-action@v5
4343
with:
4444
images: |
4545
ghcr.io/zozs/wildbutton
@@ -50,17 +50,17 @@ jobs:
5050
type=semver,pattern={{major}}
5151
type=edge
5252
- name: Set up QEMU
53-
uses: docker/setup-qemu-action@v2
53+
uses: docker/setup-qemu-action@v3
5454
- name: Set up Docker Buildx
55-
uses: docker/setup-buildx-action@v2
55+
uses: docker/setup-buildx-action@v3
5656
- name: Login to GitHub Container Registry
57-
uses: docker/login-action@v2
57+
uses: docker/login-action@v3
5858
with:
5959
registry: ghcr.io
6060
username: ${{ github.repository_owner }}
6161
password: ${{ secrets.GITHUB_TOKEN }}
6262
- name: Build and push
63-
uses: docker/build-push-action@v3
63+
uses: docker/build-push-action@v6
6464
with:
6565
context: .
6666
platforms: linux/amd64,linux/arm64

.github/workflows/vulnerabilities.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ jobs:
1212

1313
steps:
1414
- uses: actions/checkout@v3
15-
- uses: debricked/actions/scan@v1
15+
- uses: debricked/actions@v3
1616
env:
1717
DEBRICKED_TOKEN: ${{ secrets.DEBRICKED_TOKEN }}

0 commit comments

Comments
 (0)