Skip to content

Commit b723ec9

Browse files
authored
Merge branch 'main' into responsive-loadouts
2 parents 5dc0c4d + 333177a commit b723ec9

33 files changed

+974
-805
lines changed

.github/workflows/branch-deploy.yml

+6-5
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ permissions:
1010
deployments: write
1111
contents: write
1212
checks: read
13+
statuses: read
1314

1415
jobs:
1516
deploy:
@@ -19,7 +20,7 @@ jobs:
1920

2021
steps:
2122

22-
- uses: github/branch-deploy@v9.8.1
23+
- uses: github/branch-deploy@v10.0.0-rc.1
2324
id: branch-deploy
2425
with:
2526
admins: the-hideout/core-contributors
@@ -34,9 +35,9 @@ jobs:
3435
if: ${{ steps.branch-deploy.outputs.continue == 'true' }}
3536
uses: actions/[email protected]
3637
with:
37-
ref: ${{ steps.branch-deploy.outputs.ref }}
38+
ref: ${{ steps.branch-deploy.outputs.sha }}
3839

39-
- uses: actions/setup-node@v4.0.4
40+
- uses: actions/setup-node@v4.1.0
4041
if: ${{ steps.branch-deploy.outputs.continue == 'true' }}
4142
with:
4243
node-version-file: .node-version
@@ -58,7 +59,7 @@ jobs:
5859
if: ${{ steps.branch-deploy.outputs.continue == 'true' &&
5960
steps.branch-deploy.outputs.noop != 'true' &&
6061
steps.branch-deploy.outputs.environment == 'development' }}
61-
uses: cloudflare/wrangler-action@f84a562284fc78278ff9052435d9526f9c718361 # pin@v3.7.0
62+
uses: cloudflare/wrangler-action@6d58852c35a27e6034745c5d0bc373d739014f7f # pin@v3.13.0
6263
with:
6364
apiToken: ${{ secrets.CF_API_TOKEN }}
6465
accountId: ${{ secrets.CF_ACCOUNT_ID }}
@@ -84,7 +85,7 @@ jobs:
8485
if: ${{ steps.branch-deploy.outputs.continue == 'true' &&
8586
steps.branch-deploy.outputs.noop != 'true' &&
8687
steps.branch-deploy.outputs.environment == 'production' }}
87-
uses: cloudflare/wrangler-action@f84a562284fc78278ff9052435d9526f9c718361 # pin@v3.7.0
88+
uses: cloudflare/wrangler-action@6d58852c35a27e6034745c5d0bc373d739014f7f # pin@v3.13.0
8889
with:
8990
apiToken: ${{ secrets.CF_API_TOKEN }}
9091
accountId: ${{ secrets.CF_ACCOUNT_ID }}

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
with:
2626
comment: "true"
2727

28-
- uses: actions/setup-node@v4.0.4
28+
- uses: actions/setup-node@v4.1.0
2929
with:
3030
node-version-file: .node-version
3131
cache: 'npm'

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626

2727
# Initializes the CodeQL tools for scanning.
2828
- name: Initialize CodeQL
29-
uses: github/codeql-action/init@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # pin@v2
29+
uses: github/codeql-action/init@aa578102511db1f4524ed59b8cc2bae4f6e88195 # pin@v2
3030
with:
3131
languages: ${{ matrix.language }}
3232

3333
- name: Autobuild
34-
uses: github/codeql-action/autobuild@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # pin@v2
34+
uses: github/codeql-action/autobuild@aa578102511db1f4524ed59b8cc2bae4f6e88195 # pin@v2
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@e2b3eafc8d227b0241d48be5f425d47c2d750a13 # pin@v2
37+
uses: github/codeql-action/analyze@aa578102511db1f4524ed59b8cc2bae4f6e88195 # pin@v2

.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
steps:
1818
- name: deployment check
19-
uses: github/branch-deploy@v9.8.1
19+
uses: github/branch-deploy@v10.0.0-rc.1
2020
id: deployment-check
2121
with:
2222
merge_deploy_mode: "true" # tells the Action to use the merge commit workflow strategy
@@ -31,7 +31,7 @@ jobs:
3131
if: ${{ steps.deployment-check.outputs.continue == 'true' }}
3232
uses: GrantBirki/[email protected]
3333

34-
- uses: actions/setup-node@v4.0.4
34+
- uses: actions/setup-node@v4.1.0
3535
if: ${{ steps.deployment-check.outputs.continue == 'true' }}
3636
with:
3737
node-version-file: .node-version
@@ -53,7 +53,7 @@ jobs:
5353

5454
- name: deploy
5555
if: ${{ steps.deployment-check.outputs.continue == 'true' }}
56-
uses: cloudflare/wrangler-action@f84a562284fc78278ff9052435d9526f9c718361 # pin@v3.7.0
56+
uses: cloudflare/wrangler-action@6d58852c35a27e6034745c5d0bc373d739014f7f # pin@v3.13.0
5757
with:
5858
apiToken: ${{ secrets.CF_API_TOKEN }}
5959
accountId: ${{ secrets.CF_ACCOUNT_ID }}

.github/workflows/unlock-on-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
steps:
1616
- name: unlock on merge
17-
uses: github/branch-deploy@v9.8.1
17+
uses: github/branch-deploy@v10.0.0-rc.1
1818
id: unlock-on-merge
1919
with:
2020
unlock_on_merge_mode: "true" # <-- indicates that this is the "Unlock on Merge Mode" workflow

0 commit comments

Comments
 (0)