Skip to content

Commit bf6e689

Browse files
Merge branch 'develop'
2 parents 39bbf99 + fe32109 commit bf6e689

File tree

19 files changed

+1049
-2445
lines changed

19 files changed

+1049
-2445
lines changed

.github/workflows/deploy-website-develop.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
environment: ferron-website-develop
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: develop
2222

2323
- name: Set up Node.js
24-
uses: actions/setup-node@v4
24+
uses: actions/setup-node@v6
2525
with:
2626
node-version: latest
2727

@@ -49,7 +49,7 @@ jobs:
4949
directory: "website/dist"
5050

5151
- name: Set up SSH
52-
uses: LuisEnMarroquin/setup-ssh-action@v2.0.5
52+
uses: LuisEnMarroquin/setup-ssh-action@v3.0.0
5353
with:
5454
ORIGIN: ${{ secrets.SSH_HOSTNAME }}
5555
SSHKEY: ${{ secrets.SSH_KEY }}

.github/workflows/deploy-website.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ jobs:
1616
environment: ferron-website
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
with:
2121
ref: main
2222

2323
- name: Set up Node.js
24-
uses: actions/setup-node@v4
24+
uses: actions/setup-node@v6
2525
with:
2626
node-version: latest
2727

@@ -47,7 +47,7 @@ jobs:
4747
directory: "website/dist"
4848

4949
- name: Set up SSH
50-
uses: LuisEnMarroquin/setup-ssh-action@v2.0.5
50+
uses: LuisEnMarroquin/setup-ssh-action@v3.0.0
5151
with:
5252
ORIGIN: ${{ secrets.SSH_HOSTNAME }}
5353
SSHKEY: ${{ secrets.SSH_KEY }}

.github/workflows/release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080

8181
steps:
8282
- name: Checkout
83-
uses: actions/checkout@v4
83+
uses: actions/checkout@v5
8484
with:
8585
ref: main
8686
fetch-depth: 0
@@ -136,7 +136,7 @@ jobs:
136136
directory: "release"
137137

138138
- name: Set up SSH
139-
uses: LuisEnMarroquin/setup-ssh-action@v2.0.5
139+
uses: LuisEnMarroquin/setup-ssh-action@v3.0.0
140140
with:
141141
ORIGIN: ${{ secrets.SSH_HOSTNAME }}
142142
SSHKEY: ${{ secrets.SSH_KEY }}
@@ -166,7 +166,7 @@ jobs:
166166

167167
steps:
168168
- name: Checkout
169-
uses: actions/checkout@v4
169+
uses: actions/checkout@v5
170170
with:
171171
ref: main
172172

@@ -187,7 +187,7 @@ jobs:
187187
directory: "target/doc"
188188

189189
- name: Set up SSH
190-
uses: LuisEnMarroquin/setup-ssh-action@v2.0.5
190+
uses: LuisEnMarroquin/setup-ssh-action@v3.0.0
191191
with:
192192
ORIGIN: ${{ secrets.SSH_HOSTNAME }}
193193
SSHKEY: ${{ secrets.SSH_KEY }}
@@ -223,19 +223,19 @@ jobs:
223223

224224
steps:
225225
- name: Checkout
226-
uses: actions/checkout@v4
226+
uses: actions/checkout@v5
227227
with:
228228
ref: main
229229
fetch-depth: 0
230230

231231
- name: Log in to Docker Hub
232-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
232+
uses: docker/login-action@28fdb31ff34708d19615a74d67103ddc2ea9725c
233233
with:
234234
username: ${{ secrets.DOCKER_USERNAME }}
235235
password: ${{ secrets.DOCKER_PASSWORD }}
236236

237237
- name: Log in to GitHub Container Registry
238-
uses: docker/login-action@74a5d142397b4f367a81961eba4e8cd7edddf772
238+
uses: docker/login-action@28fdb31ff34708d19615a74d67103ddc2ea9725c
239239
with:
240240
registry: ghcr.io
241241
username: ${{ github.actor }}
@@ -276,7 +276,7 @@ jobs:
276276

277277
- name: Build and push Docker image
278278
id: push
279-
uses: docker/build-push-action@1dc73863535b631f98b2378be8619f83b136f4a0
279+
uses: docker/build-push-action@9e436ba9f2d7bcd1d038c8e55d039d37896ddc5d
280280
with:
281281
context: .
282282
file: ${{ matrix.dockerfile }}
@@ -286,7 +286,7 @@ jobs:
286286
cache-to: type=gha,mode=max
287287

288288
- name: Generate artifact attestation
289-
uses: actions/attest-build-provenance@v2
289+
uses: actions/attest-build-provenance@v3
290290
with:
291291
subject-name: index.docker.io/ferronserver/ferron
292292
subject-digest: ${{ steps.push.outputs.digest }}

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828

2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131
- uses: Swatinem/rust-cache@v2
3232
- name: Build
3333
run: cargo build --verbose
@@ -37,7 +37,7 @@ jobs:
3737
check:
3838
runs-on: ubuntu-latest
3939
steps:
40-
- uses: actions/checkout@v4
40+
- uses: actions/checkout@v5
4141
- uses: dtolnay/rust-toolchain@stable
4242
with:
4343
components: clippy, rustfmt

0 commit comments

Comments
 (0)