Skip to content

Commit 6b64c1a

Browse files
authored
Bump dependencies (#107)
* Bump dependencies * Break lint out into a separate step to work around old version of Swift
1 parent bc1d6d4 commit 6b64c1a

File tree

2 files changed

+13
-4
lines changed

2 files changed

+13
-4
lines changed

.github/workflows/ci.yaml

+12-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,11 @@ on:
88
- main
99

1010
jobs:
11-
deploy:
12-
name: Build and Deploy
11+
lint:
12+
# We need to use 5.10 for Publish (Swift 6 breaks) and that doesn't have an up to date version
13+
# of python so run lint in a separate job
14+
name: Lint
1315
runs-on: ubuntu-latest
14-
container: swift:5.10
1516
steps:
1617
- name: Checkout code
1718
uses: actions/checkout@v4
@@ -23,6 +24,14 @@ jobs:
2324
uses: ScottBrenner/cfn-lint-action@v2
2425
- name: Run CloudFormation linter
2526
run: cfn-lint -t stack.yaml
27+
deploy:
28+
needs: lint
29+
name: Build and Deploy
30+
runs-on: ubuntu-latest
31+
container: swift:5.10
32+
steps:
33+
- name: Checkout code
34+
uses: actions/checkout@v4
2635
- name: Build site
2736
run: swift run
2837
- name: Deploy S3 Website

Package.resolved

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"location" : "https://github.com/vapor/design.git",
2525
"state" : {
2626
"branch" : "main",
27-
"revision" : "f51a9550c6b0b302635e8a6c57427ae4ff922810"
27+
"revision" : "e44b1b8e976f027d42d052210cc3ef1ba0a767b0"
2828
}
2929
},
3030
{

0 commit comments

Comments
 (0)