Skip to content

Commit d6b81a3

Browse files
committed
Merge #437: update deps
4bd88e7 style: format .toml files (Cameron Garnham) 0ff86da chore: update cargo deps (Cameron Garnham) 91ff423 chore: update cargo lockfile (Cameron Garnham) 7d5acd2 chore: bump codecov/codecov-action from 3 to 4 (Cameron Garnham) 4cc4680 chore: update docker workflow actions (Cameron Garnham) Pull request description: - include formatting of toml files ACKs for top commit: da2ce7: ACK 4bd88e7 Tree-SHA512: ba8e44db27de33314959328233e775b77f4d2c4b11e13893b38efe5a1cbdacbdea5dc5959c3ad7fcebb34fedd954e5496d35ac7b755ab8f848832858bac6fcbb
2 parents bf3ddfc + 4bd88e7 commit d6b81a3

15 files changed

Lines changed: 158 additions & 165 deletions

File tree

.github/workflows/container.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
steps:
2727
- id: setup
2828
name: Setup Toolchain
29-
uses: docker/setup-buildx-action@v2
29+
uses: docker/setup-buildx-action@v3
3030

3131
- id: build
3232
name: Build
33-
uses: docker/build-push-action@v4
33+
uses: docker/build-push-action@v5
3434
with:
3535
file: ./Containerfile
3636
push: false
@@ -125,7 +125,7 @@ jobs:
125125
steps:
126126
- id: meta
127127
name: Docker Meta
128-
uses: docker/metadata-action@v4
128+
uses: docker/metadata-action@v5
129129
with:
130130
images: |
131131
"${{ secrets.DOCKER_HUB_USERNAME }}/${{secrets.DOCKER_HUB_REPOSITORY_NAME }}"
@@ -134,17 +134,17 @@ jobs:
134134
135135
- id: login
136136
name: Login to Docker Hub
137-
uses: docker/login-action@v2
137+
uses: docker/login-action@v3
138138
with:
139139
username: ${{ secrets.DOCKER_HUB_USERNAME }}
140140
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
141141

142142
- id: setup
143143
name: Setup Toolchain
144-
uses: docker/setup-buildx-action@v2
144+
uses: docker/setup-buildx-action@v3
145145

146146
- name: Build and push
147-
uses: docker/build-push-action@v4
147+
uses: docker/build-push-action@v5
148148
with:
149149
file: ./Containerfile
150150
push: true
@@ -163,7 +163,7 @@ jobs:
163163
steps:
164164
- id: meta
165165
name: Docker Meta
166-
uses: docker/metadata-action@v4
166+
uses: docker/metadata-action@v5
167167
with:
168168
images: |
169169
"${{ secrets.DOCKER_HUB_USERNAME }}/${{secrets.DOCKER_HUB_REPOSITORY_NAME }}"
@@ -175,17 +175,17 @@ jobs:
175175
176176
- id: login
177177
name: Login to Docker Hub
178-
uses: docker/login-action@v2
178+
uses: docker/login-action@v3
179179
with:
180180
username: ${{ secrets.DOCKER_HUB_USERNAME }}
181181
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
182182

183183
- id: setup
184184
name: Setup Toolchain
185-
uses: docker/setup-buildx-action@v2
185+
uses: docker/setup-buildx-action@v3
186186

187187
- name: Build and push
188-
uses: docker/build-push-action@v4
188+
uses: docker/build-push-action@v5
189189
with:
190190
file: ./Containerfile
191191
push: true

.github/workflows/coverage.yaml

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

8484
- id: upload
8585
name: Upload Coverage Report
86-
uses: codecov/codecov-action@v3
86+
uses: codecov/codecov-action@v4
8787
with:
8888
token: ${{ secrets.CODECOV_TOKEN }}
8989
files: ${{ steps.coverage.outputs.report }}

.vscode/extensions.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"recommendations": [
33
"streetsidesoftware.code-spell-checker",
4-
"rust-lang.rust-analyzer"
4+
"rust-lang.rust-analyzer",
5+
"tamasfe.even-better-toml"
56
]
67
}

.vscode/settings.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,9 @@
2020
"-W",
2121
"clippy::pedantic",
2222
],
23+
"evenBetterToml.formatter.allowedBlankLines": 1,
24+
"evenBetterToml.formatter.columnWidth": 130,
25+
"evenBetterToml.formatter.trailingNewline": true,
26+
"evenBetterToml.formatter.reorderKeys": true,
27+
"evenBetterToml.formatter.reorderArrays": true,
2328
}

0 commit comments

Comments
 (0)