Skip to content

Commit

Permalink
Merge pull request #311 from stepchowfun/update-actions
Browse files Browse the repository at this point in the history
Update GitHub Actions to use non-deprecated versions
  • Loading branch information
stepchowfun committed Jun 1, 2024
2 parents 79c47d1 + 5231621 commit ca1df81
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Build for Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- if: ${{ github.event_name == 'push' }}
uses: docker/login-action@v3
with:
Expand All @@ -30,7 +30,7 @@ jobs:
# The artifact name will contain the target triple, so the file name doesn't need to.
mv artifacts/docuum-x86_64-unknown-linux-gnu artifacts/docuum
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: x86_64-unknown-linux-gnu
path: artifacts/docuum
Expand All @@ -41,7 +41,7 @@ jobs:
# The artifact name will contain the target triple, so the file name doesn't need to.
mv artifacts/docuum-x86_64-unknown-linux-musl artifacts/docuum
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: x86_64-unknown-linux-musl
path: artifacts/docuum
Expand All @@ -52,7 +52,7 @@ jobs:
# The artifact name will contain the target triple, so the file name doesn't need to.
mv artifacts/docuum-aarch64-unknown-linux-gnu artifacts/docuum
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: aarch64-unknown-linux-gnu
path: artifacts/docuum
Expand All @@ -63,7 +63,7 @@ jobs:
# The artifact name will contain the target triple, so the file name doesn't need to.
mv artifacts/docuum-aarch64-unknown-linux-musl artifacts/docuum
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: aarch64-unknown-linux-musl
path: artifacts/docuum
Expand All @@ -79,7 +79,7 @@ jobs:
# The unit tests do not expect the files in `test_data` to have carriage returns added.
git config --global core.autocrlf false
git config --global core.eol lf
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand Down Expand Up @@ -110,12 +110,12 @@ jobs:
--release \
--target aarch64-pc-windows-msvc
NO_COLOR=true cargo test --locked # [ref:colorless_tests]
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: x86_64-pc-windows-msvc
path: target/x86_64-pc-windows-msvc/release/docuum.exe
if-no-files-found: error
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: aarch64-pc-windows-msvc
path: target/aarch64-pc-windows-msvc/release/docuum.exe
Expand All @@ -124,7 +124,7 @@ jobs:
name: Build for macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand All @@ -148,12 +148,12 @@ jobs:
MACOSX_DEPLOYMENT_TARGET=$(xcrun --show-sdk-version) \
cargo build --locked --release --target aarch64-apple-darwin
NO_COLOR=true cargo test --locked # [ref:colorless_tests]
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: x86_64-apple-darwin
path: target/x86_64-apple-darwin/release/docuum
if-no-files-found: error
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: aarch64-apple-darwin
path: target/aarch64-apple-darwin/release/docuum
Expand All @@ -162,7 +162,7 @@ jobs:
name: Install on macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand All @@ -176,7 +176,7 @@ jobs:
name: Install on Ubuntu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: |
# Make Bash log commands and not silently ignore errors.
set -euxo pipefail
Expand All @@ -192,14 +192,14 @@ jobs:
runs-on: ubuntu-latest
needs: [ci-linux, ci-macos, ci-windows, install-macos, install-ubuntu]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3 # For building multi-platform images
- uses: docker/setup-buildx-action@v3 # For building multi-platform images
- uses: docker/login-action@v3
with:
username: stephanmisc
password: ${{ secrets.DOCKER_PASSWORD }}
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
path: artifacts/
- env:
Expand Down

0 comments on commit ca1df81

Please sign in to comment.