Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix GitHub Action warning. #360

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set PLATFORM
if: ${{ github.event.inputs.platform != '' }}
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
shell_scripts/create_smoke_test_kit.sh

- name: 'Upload smoke test kit'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Smoke Test Kit Macos ${{matrix.variant}}'
path: smoke-test-kit/
Expand All @@ -116,14 +116,14 @@ jobs:
macos/create_installer_macos.sh

- name: 'Upload DMG script logs on failure'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
if: failure()
with:
name: 'DMG script error logs ${{matrix.variant}}'
path: macos_installer/logs/

- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Macos installer ${{matrix.variant}} x86_64'
path: macos_installer/Coq-Platform-*.dmg
Expand All @@ -145,13 +145,13 @@ jobs:
run: brew install bash

- name: 'Download Artifact'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
id: download
with:
name: 'Macos installer ${{matrix.variant}} x86_64'

- name: 'Download smoke test kit'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
id: download-smoke
with:
name: 'Smoke Test Kit Macos ${{matrix.variant}}'
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set PLATFORM
if: ${{ github.event.inputs.platform != '' }}
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
smoke-test-kit/run-smoke-test.sh

- name: 'Upload smoke test kit'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Smoke Test Kit ${{matrix.variant}}'
path: smoke-test-kit
Expand All @@ -109,7 +109,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set PLATFORM
if: ${{ github.event.inputs.platform != '' }}
Expand All @@ -134,7 +134,7 @@ jobs:
run: cat /home/runner/.local/state/snapcraft/log/*

- name: Save Artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Snap package'
path: ${{ steps.build.outputs.snap }}
Expand Down Expand Up @@ -167,13 +167,13 @@ jobs:
run: echo "SNAP_PICK=${{ github.event.inputs.snap_pick }}" >> $GITHUB_ENV

- name: Download Artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
id: download-snap
with:
name: 'Snap package'

- name: 'Download smoke test kit'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
id: download-smoke
with:
name: 'Smoke Test Kit ${{ env.SNAP_PICK }}'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ubuntu_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:

steps:
- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set PLATFORM
if: ${{ github.event.inputs.platform != '' }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
smoke-test-kit/run-smoke-test.sh

- name: 'Upload smoke test kit'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Smoke Test Kit ${{matrix.variant}}'
path: smoke-test-kit
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
git config --global core.eol lf

- name: Git checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set PLATFORM
if: ${{ github.event.inputs.platform != '' }}
Expand All @@ -81,14 +81,14 @@ jobs:
run: C:\cygwin_coq_platform\bin\bash --login -c "cd platform/ && shell_scripts/create_smoke_test_kit.sh && mkdir /cygdrive/c/smoke && cp -ra smoke-test-kit/* /cygdrive/c/smoke/"

- name: 'Upload Artifact'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Windows installer ${{matrix.variant}} ${{matrix.architecture}}'
path: C:\installer\*.exe
retention-days: 5

- name: 'Upload smoke test kit'
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: 'Smoke Test Kit Windows ${{matrix.variant}} ${{matrix.architecture}}'
path: C:\smoke\
Expand All @@ -110,13 +110,13 @@ jobs:

steps:
- name: 'Download Artifact'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
id: download
with:
name: 'Windows installer ${{matrix.variant}} ${{matrix.architecture}}'

- name: 'Download smoke test kit'
uses: actions/download-artifact@v2
uses: actions/download-artifact@v3
id: download-smoke
with:
name: 'Smoke Test Kit Windows ${{matrix.variant}} ${{matrix.architecture}}'
Expand Down