Browse Source
Update commit.yml
Use "latest" version of all actions.
pull/331/head
Wayne Warthen
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
5 deletions
-
.github/workflows/commit.yml
|
|
@ -14,9 +14,9 @@ jobs: |
|
|
runs-on: ubuntu-latest |
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
|
steps: |
|
|
steps: |
|
|
- uses: rlespinasse/github-slug-action@v3.x |
|
|
|
|
|
|
|
|
- uses: rlespinasse/github-slug-action@latest |
|
|
|
|
|
|
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
|
|
|
- uses: actions/checkout@latest |
|
|
|
|
|
|
|
|
- name: Build |
|
|
- name: Build |
|
|
run: | |
|
|
run: | |
|
|
@ -33,7 +33,7 @@ jobs: |
|
|
find -type f -exec md5sum '{}' \; |
|
|
find -type f -exec md5sum '{}' \; |
|
|
|
|
|
|
|
|
- name: Upload Artifact |
|
|
- name: Upload Artifact |
|
|
uses: actions/upload-artifact@v2 |
|
|
|
|
|
|
|
|
uses: actions/upload-artifact@latest |
|
|
with: |
|
|
with: |
|
|
name: RomWBW_Linux-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}} |
|
|
name: RomWBW_Linux-${{env.GITHUB_REF_SLUG}}-${{env.GITHUB_SHA_SHORT}} |
|
|
path: . |
|
|
path: . |
|
|
@ -56,7 +56,7 @@ jobs: |
|
|
runs-on: macos-latest |
|
|
runs-on: macos-latest |
|
|
|
|
|
|
|
|
steps: |
|
|
steps: |
|
|
- uses: actions/checkout@v2 |
|
|
|
|
|
|
|
|
- uses: actions/checkout@latest |
|
|
|
|
|
|
|
|
- name: Build |
|
|
- name: Build |
|
|
run: | |
|
|
run: | |
|
|
@ -72,7 +72,7 @@ jobs: |
|
|
find . -type f -exec md5 -r -- '{}' +; |
|
|
find . -type f -exec md5 -r -- '{}' +; |
|
|
|
|
|
|
|
|
- name: Upload Artifact |
|
|
- name: Upload Artifact |
|
|
uses: actions/upload-artifact@v2 |
|
|
|
|
|
|
|
|
uses: actions/upload-artifact@latest |
|
|
with: |
|
|
with: |
|
|
name: RomWBW_MacOS |
|
|
name: RomWBW_MacOS |
|
|
path: . |
|
|
path: . |
|
|
|