Skip to content

Commit

Permalink
add latest version of GitHub Action for checking out a repo
Browse files Browse the repository at this point in the history
  • Loading branch information
stlankes committed Dec 30, 2020
1 parent 7d57cd7 commit 6cc1b7e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 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@v2.3.4
uses: actions/checkout@v2
- name: Check Formatting
run: cargo fmt -- --check
2 changes: 1 addition & 1 deletion .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.3.4
uses: actions/checkout@v2
with:
repository: 'hermitcore/rusty-hermit'
ref: 'master'
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@v2.3.4
uses: actions/checkout@v2
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@v2.3.4
- uses: actions/checkout@v2
- uses: actions-rs/audit-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 6cc1b7e

Please sign in to comment.