Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 3.5.3 to 3.6.0 (#10)
Browse files Browse the repository at this point in the history
* build(deps): bump actions/checkout from 3.5.3 to 3.6.0

Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.3 to 3.6.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3.5.3...v3.6.0)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update audit.yml

* Update build.yml

* Update build.yml

* Update rust-clippy.yml

* Update rust.yml

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: houseme <housemecn@gmail.com>
  • Loading branch information
dependabot[bot] and houseme committed Aug 28, 2023
1 parent c53823b commit 7ba3256
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/audit.yml
Expand Up @@ -9,8 +9,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3
- name: Run audit check
uses: actions-rs/audit-check@v1.2.0
with:
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
Expand All @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
Expand All @@ -83,7 +83,7 @@ jobs:
# steps:
# - name: Checkout code
# # Reference your environment variables
# uses: actions/checkout@v3.5.3
# uses: actions/checkout@v3
# - name: Install rust
# uses: actions-rs/toolchain@v1
# - name: Run cargo login
Expand All @@ -107,7 +107,7 @@ jobs:
# - clippy_check
# - test
# steps:
# - uses: actions/checkout@v3.5.3
# - uses: actions/checkout@v3
#
# # Use caching to speed up your build
# - name: Cache publish-action bin
Expand Down Expand Up @@ -138,4 +138,4 @@ jobs:
# - name: Update Changelog.md
# if: steps.publish-action.outputs.new_version == 'true' && steps.publish-action.outputs.publish == 'true'
# run: |
# changelog -o CHANGELOG.md
# changelog -o CHANGELOG.md
2 changes: 1 addition & 1 deletion .github/workflows/rust-clippy.yml
Expand Up @@ -28,7 +28,7 @@ jobs:
actions: read # only required for a private repository by github/codeql-action/upload-sarif to get the Action run status
steps:
- name: Checkout code
uses: actions/checkout@v3.5.3
uses: actions/checkout@v3

- name: Install Rust toolchain
uses: actions-rs/toolchain@16499b5e05bf2e26879000db0c1d13f7e13fa3af #@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3.5.3
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down

0 comments on commit 7ba3256

Please sign in to comment.