Skip to content

Commit 9a25469

Browse files
authored
Merge branch 'master' into vs-marketplace-cache-increase
2 parents 29a4223 + 6113242 commit 9a25469

11 files changed

+1036
-1577
lines changed

.github/workflows/build-docker-image.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
uses: actions/checkout@v6
1414

1515
- name: Set up Docker Buildx
16-
uses: docker/setup-buildx-action@v3
16+
uses: docker/setup-buildx-action@v4
1717

1818
- name: Set Git Short SHA
1919
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
2020

2121
- name: Build
22-
uses: docker/build-push-action@v6
22+
uses: docker/build-push-action@v7
2323
with:
2424
context: .
2525
push: false

.github/workflows/create-release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,18 +35,18 @@ jobs:
3535
tag: server-${{ steps.date.outputs.date }}
3636

3737
- name: Set up Docker Buildx
38-
uses: docker/setup-buildx-action@v3
38+
uses: docker/setup-buildx-action@v4
3939
with:
4040
platforms: linux/amd64,linux/arm64
4141

4242
- name: Login to DockerHub
43-
uses: docker/login-action@v3
43+
uses: docker/login-action@v4
4444
with:
4545
username: ${{ secrets.DOCKERHUB_USERNAME }}
4646
password: ${{ secrets.DOCKERHUB_TOKEN }}
4747

4848
- name: Build and push snapshot release to DockerHub
49-
uses: docker/build-push-action@v6
49+
uses: docker/build-push-action@v7
5050
with:
5151
context: .
5252
push: true
@@ -56,14 +56,14 @@ jobs:
5656
version=server-${{ steps.date.outputs.date }}
5757
5858
- name: Login to GHCR
59-
uses: docker/login-action@v3
59+
uses: docker/login-action@v4
6060
with:
6161
registry: ghcr.io
6262
username: ${{ github.actor }}
6363
password: ${{ secrets.GITHUB_TOKEN }}
6464

6565
- name: Build and push snapshot release to GHCR
66-
uses: docker/build-push-action@v6
66+
uses: docker/build-push-action@v7
6767
with:
6868
context: .
6969
push: true

.github/workflows/publish-docker-next.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
uses: actions/checkout@v6
1616

1717
- name: Set up Docker Buildx
18-
uses: docker/setup-buildx-action@v3
18+
uses: docker/setup-buildx-action@v4
1919

2020
- name: Login to DockerHub
21-
uses: docker/login-action@v3
21+
uses: docker/login-action@v4
2222
with:
2323
username: ${{ secrets.DOCKERHUB_USERNAME }}
2424
password: ${{ secrets.DOCKERHUB_TOKEN }}
@@ -28,7 +28,7 @@ jobs:
2828

2929
- name: Build and push to DockerHub
3030
id: docker_build_push
31-
uses: docker/build-push-action@v6
31+
uses: docker/build-push-action@v7
3232
with:
3333
context: .
3434
push: true
@@ -40,14 +40,14 @@ jobs:
4040
run: echo ${{ steps.docker_build_push.outputs.digest }} >> $GITHUB_STEP_SUMMARY
4141

4242
- name: Login to GHCR
43-
uses: docker/login-action@v3
43+
uses: docker/login-action@v4
4444
with:
4545
registry: ghcr.io
4646
username: ${{ github.actor }}
4747
password: ${{ secrets.GITHUB_TOKEN }}
4848

4949
- name: Build and push to GHCR
50-
uses: docker/build-push-action@v6
50+
uses: docker/build-push-action@v7
5151
with:
5252
context: .
5353
push: true

.github/workflows/test-package-lib.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
npm: '^10'
1818
engine-strict: 'false'
1919
- node: '22'
20-
npm: '^11'
20+
npm: '11.11.1'
2121
engine-strict: 'true'
2222
- node: '24'
23-
npm: '^11'
23+
npm: '11.11.1'
2424
engine-strict: 'false'
2525
steps:
2626
- name: Checkout

doc/production-hosting.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ Production hosting is managed by the Shields ops team:
2222
| Cloudflare (CDN) | Admin access | @calebcartwright, @chris48s, @espadrine, @paulmelnikow, @PyvesB |
2323
| DNS | Account owner | @olivierlacan |
2424
| DNS | Read-only account access | @chris48s, @espadrine, @paulmelnikow |
25-
| Sentry | Account access | @calebcartwright, @chris48s, @espadrine, @jNullj, @paulmelnikow, @platan, @PyvesB |
25+
| Sentry | Owner | @paulmelnikow, @jNullj |
26+
| Sentry | Account access | @calebcartwright, @jNullj, @paulmelnikow, @PyvesB |
2627
| Metrics server | Owner | @platan |
2728
| More metrics | Owner | @RedSparr0w |
2829
| Twitch | OAuth app | @PyvesB |

0 commit comments

Comments
 (0)