Skip to content

Commit 2e7dd19

Browse files
committed
Merge #440: Release Version 3.0.0-alpha.7
a9b199d release: version 3.0.0-alpha.7 (Cameron Garnham) fc7cad0 chore: bump alpha version to 3.0.0-alpha.7-develop (Cameron Garnham) ab0dd30 docs: update release process (Cameron Garnham) a005af2 Revert "chore: bump codecov/codecov-action from 3 to 4" (Cameron Garnham) 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) 27a7f92 ci: fix for bug in upstream lib (Cameron Garnham) c06dc64 fixup: wrong env in deployment workflow (Cameron Garnham) Pull request description: Following - #431 , lets check if the release process works! :) ACKs for top commit: da2ce7: ACK a9b199d Tree-SHA512: 92ce4efef79cc0cda98458cf39c9adf3c0058269a329664a57c1db754f3591bd4f9b4a3927192c9874f1b251b1b64a0daff1541a8e1b80d2b0153058847d4885
2 parents ea8c78f + a9b199d commit 2e7dd19

18 files changed

+196
-197
lines changed

.github/workflows/container.yaml

+10-10
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/deployment.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
jobs:
99
secrets:
1010
name: Secrets
11-
environment: dockerhub-torrust
11+
environment: crates-io-torrust
1212
runs-on: ubuntu-latest
1313

1414
outputs:
@@ -51,7 +51,6 @@ jobs:
5151
name: Publish
5252
environment: crates-io-torrust
5353
needs: test
54-
if: needs.secrets.outputs.continue == 'true'
5554
runs-on: ubuntu-latest
5655

5756
steps:

.github/workflows/testing.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ jobs:
104104
name: Run Unit Tests
105105
run: cargo test --tests --benches --examples --workspace --all-targets --all-features
106106

107-
- id: coverage
108-
name: Generate Coverage Report
109-
run: cargo llvm-cov nextest --tests --benches --examples --workspace --all-targets --all-features
107+
# Temporary Disable https://github.com/time-rs/time/issues/618
108+
# - id: coverage
109+
# name: Generate Coverage Report
110+
# run: cargo llvm-cov nextest --tests --benches --examples --workspace --all-targets --all-features

.vscode/extensions.json

+2-1
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

+5
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)