Skip to content

Commit

Permalink
Update actions/checkout requirement to v2.3.4
Browse files Browse the repository at this point in the history
Updates the requirements on [actions/checkout](https://github.com/actions/checkout) to permit the latest version.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/commits/5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f)

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 13, 2020
1 parent 98c6031 commit 35ef3a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ jobs:
components: ${{ matrix.components || '' }}
targets: ${{ matrix.targets || '' }}
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v2.3.4
- name: Check Formatting
run: cargo fmt -- --check
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
components: ${{ matrix.components || '' }}
targets: ${{ matrix.targets || '' }}
- name: Checkout rusty-hermit
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4
with:
repository: 'hermitcore/rusty-hermit'
ref: 'master'
Expand All @@ -54,7 +54,7 @@ jobs:
run: git rm -r libhermit-rs
if: ${{ matrix.os == 'windows-latest' }}
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v2.3.4
with:
path: 'libhermit-rs'
- name: Check Cargo availability
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v2.3.4
with:
submodules: true
- name: Install nightly toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/security_audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
security_audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2.3.4
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 35ef3a4

Please sign in to comment.