Skip to content

Commit 33c4b19

Browse files
committed
Update CI
1 parent d5e881a commit 33c4b19

3 files changed

Lines changed: 20 additions & 6 deletions

File tree

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,11 @@ updates:
88
dependencies:
99
patterns:
1010
- "*"
11+
- package-ecosystem: "swift"
12+
directory: "/"
13+
schedule:
14+
interval: "daily"
15+
groups:
16+
dependencies:
17+
patterns:
18+
- "*"

.github/workflows/benchmark.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
name: benchmark
2-
32
on:
43
workflow_dispatch:
54
inputs:

.github/workflows/test.yml

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,11 @@ concurrency:
55
on:
66
pull_request: { types: [opened, reopened, synchronize, ready_for_review] }
77
push: { branches: [ main ] }
8-
env:
9-
LOG_LEVEL: info
10-
permissions:
11-
contents: read
128

139
jobs:
1410
unit-tests:
11+
permissions:
12+
contents: read
1513
uses: vapor/ci/.github/workflows/run-unit-tests.yml@main
1614
secrets: inherit
1715
with:
@@ -20,8 +18,10 @@ jobs:
2018
with_linting: true
2119

2220
upstream-check:
21+
permissions:
22+
contents: read
2323
runs-on: ubuntu-latest
24-
container: swift:6.2-noble
24+
container: swift:6.3-noble
2525
steps:
2626
- name: Check out self
2727
uses: actions/checkout@v6
@@ -36,3 +36,10 @@ jobs:
3636
run: swift package --package-path vapor edit routing-kit --path routing-kit
3737
- name: Run tests
3838
run: swift test --package-path vapor
39+
40+
submit-dependencies:
41+
permissions:
42+
contents: write
43+
if: ${{ github.event_name == 'push' }}
44+
uses: vapor/ci/.github/workflows/submit-deps.yml@main
45+
secrets: inherit

0 commit comments

Comments
 (0)