Skip to content

Commit 83e94d1

Browse files
Bump the github-actions group with 3 updates (#213)
Bumps the github-actions group with 3 updates: [actions-rs/toolchain](https://github.com/actions-rs/toolchain), [actions-rs/cargo](https://github.com/actions-rs/cargo) and [obi1kenobi/cargo-semver-checks-action](https://github.com/obi1kenobi/cargo-semver-checks-action). Updates `actions-rs/toolchain` from 1.0.6 to 1.0.7 - [Release notes](https://github.com/actions-rs/toolchain/releases) - [Changelog](https://github.com/actions-rs/toolchain/blob/master/CHANGELOG.md) - [Commits](actions-rs/toolchain@b2417cd...16499b5) Updates `actions-rs/cargo` from 1.0.1 to 1.0.3 - [Release notes](https://github.com/actions-rs/cargo/releases) - [Changelog](https://github.com/actions-rs/cargo/blob/master/CHANGELOG.md) - [Commits](actions-rs/cargo@ae10961...844f368) Updates `obi1kenobi/cargo-semver-checks-action` from 2.8 to 2.9 - [Release notes](https://github.com/obi1kenobi/cargo-semver-checks-action/releases) - [Commits](obi1kenobi/cargo-semver-checks-action@5b298c9...6b69fcf) --- updated-dependencies: - dependency-name: actions-rs/toolchain dependency-version: 1.0.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions-rs/cargo dependency-version: 1.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: obi1kenobi/cargo-semver-checks-action dependency-version: '2.9' dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 95da645 commit 83e94d1

2 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/checks.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ jobs:
2727
path: target
2828
key: ${{ runner.os }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
2929

30-
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # v1.0.6
30+
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
3131
with:
3232
toolchain: "stable"
3333
override: true
3434
components: clippy
3535

36-
- uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
36+
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
3737
with:
3838
command: check
3939

@@ -56,38 +56,38 @@ jobs:
5656
path: ~/.cargo/registry
5757
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }}
5858

59-
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # v1.0.6
59+
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
6060
with:
6161
toolchain: nightly
6262
override: true
6363
minimal: true
6464

6565
- name: taskchampion-sync-server
66-
uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
66+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
6767
with:
6868
command: rustdoc
6969
args: -p taskchampion-sync-server --bin taskchampion-sync-server --all-features -- -Z unstable-options --check -Dwarnings
7070

7171
- name: taskchampion-sync-server-postgres
72-
uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
72+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
7373
with:
7474
command: rustdoc
7575
args: -p taskchampion-sync-server --bin taskchampion-sync-server-postgres --all-features -- -Z unstable-options --check -Dwarnings
7676

7777
- name: taskchampion-sync-server-core
78-
uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
78+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
7979
with:
8080
command: rustdoc
8181
args: -p taskchampion-sync-server-core --all-features -- -Z unstable-options --check -Dwarnings
8282

8383
- name: taskchampion-sync-server-storage-sqlite
84-
uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
84+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
8585
with:
8686
command: rustdoc
8787
args: -p taskchampion-sync-server-storage-sqlite --all-features -- -Z unstable-options --check -Dwarnings
8888

8989
- name: taskchampion-sync-server-storage-postgres
90-
uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
90+
uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
9191
with:
9292
command: rustdoc
9393
args: -p taskchampion-sync-server-storage-postgres --all-features -- -Z unstable-options --check -Dwarnings
@@ -98,14 +98,14 @@ jobs:
9898
steps:
9999
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
100100

101-
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # v1.0.6
101+
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
102102
with:
103103
profile: minimal
104104
components: rustfmt
105105
toolchain: stable
106106
override: true
107107

108-
- uses: actions-rs/cargo@ae10961054e4aa8b4aa7dffede299aaf087aa33b # v1.0.1
108+
- uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 # v1.0.3
109109
with:
110110
command: fmt
111111
args: --all -- --check
@@ -115,7 +115,7 @@ jobs:
115115
name: "Cargo Semver Checks"
116116
steps:
117117
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
118-
- uses: obi1kenobi/cargo-semver-checks-action@5b298c9520f7096a4683c0bd981a7ac5a7e249ae # v2.8
118+
- uses: obi1kenobi/cargo-semver-checks-action@6b69fcf40e9b5fb17adeb57e4b6ecd020649a239 # v2.9
119119
with:
120120
# exclude the binary package from semver checks, since it is not published as a crate.
121121
exclude: taskchampion-sync-server

.github/workflows/rust-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
path: target
5454
key: ${{ runner.os }}-${{ matrix.rust }}-cargo-build-target-${{ hashFiles('**/Cargo.lock') }}
5555

56-
- uses: actions-rs/toolchain@b2417cde72dcf67f306c0ae8e0828a81bf0b189f # v1.0.6
56+
- uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af # v1.0.7
5757
with:
5858
toolchain: "${{ matrix.rust }}"
5959
override: true

0 commit comments

Comments
 (0)