diff options
author | Dirk Stolle <[email protected]> | 2023-07-05 01:48:20 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2023-07-04 23:48:20 +0000 |
commit | 3e1c6e4351e18a6c189afd08b63e44e81ed0ecf2 (patch) | |
tree | 9a7b07a53cd2b34e9aa2264c8a391090b0dcdfee /.github/workflows | |
parent | 830a8d7e13be369ecc61d6938da3ee8a47c461a3 (diff) |
Update GitHub Actions CI (#873)
The following updates are performed:
* update actions/checkout to v3
* update actions/upload-artifact to v3.1.2
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 4 | ||||
-rw-r--r-- | .github/workflows/makemhr.yml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 18c381bb..b1c3b413 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -108,7 +108,7 @@ jobs: } steps: - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 - name: Install Dependencies shell: bash @@ -145,7 +145,7 @@ jobs: - name: Upload Archive # Upload package as an artifact of this workflow. - uses: actions/[email protected] + uses: actions/[email protected] if: ${{ matrix.config.os == 'windows-latest' }} with: name: soft_oal-${{matrix.config.name}} diff --git a/.github/workflows/makemhr.yml b/.github/workflows/makemhr.yml index 7bde284c..65486150 100644 --- a/.github/workflows/makemhr.yml +++ b/.github/workflows/makemhr.yml @@ -55,7 +55,7 @@ jobs: copy "libmysofa/windows/third-party/zlib-1.2.11/bin/zlib.dll" "Artifacts/zlib.dll" - name: Upload makemhr artifact - uses: actions/[email protected] + uses: actions/[email protected] with: name: makemhr path: "Artifacts/" |