Skip to content

Commit 66e923d

Browse files
authored
Merge pull request #289 from SkyCryptWebsite/dev
2 parents 20b0e44 + 9ed76d7 commit 66e923d

7 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/actions/pnpm-install/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ runs:
3636

3737
steps:
3838
- name: Checkout
39-
uses: actions/checkout@v5
39+
uses: actions/checkout@v6
4040

4141
- name: Setup pnpm
4242
uses: pnpm/action-setup@v4

.github/workflows/build.yml

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

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424

2525
- name: PNPM Install
2626
uses: ./.github/actions/pnpm-install

.github/workflows/checks.yml

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

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: PNPM Install
1616
uses: ./.github/actions/pnpm-install

.github/workflows/clean_cache.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Check out code
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: Cleanup
1818
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
steps:
2121
- name: Git checkout
22-
uses: actions/checkout@v5
22+
uses: actions/checkout@v6
2323
with:
2424
fetch-depth: 0
2525

@@ -56,7 +56,7 @@ jobs:
5656

5757
steps:
5858
- name: Git checkout
59-
uses: actions/checkout@v5
59+
uses: actions/checkout@v6
6060
with:
6161
fetch-depth: 0
6262

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v6
1414

1515
- name: PNPM Install
1616
uses: ./.github/actions/pnpm-install
@@ -31,7 +31,7 @@ jobs:
3131

3232
# steps:
3333
# - name: Checkout
34-
# uses: actions/checkout@v5
34+
# uses: actions/checkout@v6
3535

3636
# - name: PNPM Install
3737
# uses: ./.github/actions/pnpm-install

.github/workflows/website.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828

2929
steps:
3030
- name: Checkout repository
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@v6
3232

3333
- name: Initialize CodeQL
3434
uses: github/codeql-action/init@v4
@@ -59,10 +59,11 @@ jobs:
5959
contents: read
6060
id-token: write
6161
attestations: write
62+
artifact-metadata: write
6263

6364
steps:
6465
- name: Git checkout
65-
uses: actions/checkout@v5
66+
uses: actions/checkout@v6
6667

6768
- name: Assign short SHA
6869
run: echo "SHORT_SHA=$(git rev-parse --short HEAD)" >> $GITHUB_ENV
@@ -72,21 +73,21 @@ jobs:
7273
run: echo "SERVER_API_URL=sky.shiiyu.moe" >> $GITHUB_ENV
7374

7475
- name: Registry login
75-
uses: docker/login-action@v3
76+
uses: docker/login-action@v4
7677
with:
7778
registry: ${{ env.CONTAINER_REGISTRY }}
7879
username: ${{ github.actor }}
7980
password: ${{ secrets.GITHUB_TOKEN }}
8081

8182
- name: Extract metadata
8283
id: meta
83-
uses: docker/metadata-action@v5
84+
uses: docker/metadata-action@v6
8485
with:
8586
images: ${{ env.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}
8687

8788
- name: Build and Push
8889
id: push
89-
uses: docker/build-push-action@v6
90+
uses: docker/build-push-action@v7
9091
with:
9192
context: .
9293
push: true
@@ -97,7 +98,7 @@ jobs:
9798
labels: ${{ steps.meta.outputs.labels }}
9899

99100
- name: Attest Build Provenance
100-
uses: actions/attest-build-provenance@v3
101+
uses: actions/attest@v4
101102
with:
102103
subject-name: ${{ env.CONTAINER_REGISTRY }}/${{ env.IMAGE_NAME }}
103104
subject-digest: ${{ steps.push.outputs.digest }}

0 commit comments

Comments
 (0)