Skip to content

Commit

Permalink
Update to later versions of github actions.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciansmith committed Jul 16, 2024
1 parent 6600f15 commit ec93bd5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ jobs:

steps:
- name: Checkout Antimony
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set MSVC as the default compiler on Windows
if: matrix.platform.os_type == 'windows'
uses: ilammy/msvc-dev-cmd@v1.6.0
uses: ilammy/msvc-dev-cmd@v1

- name: Upgrade gcc on Linux
if: matrix.platform.os_type == 'manylinux'
Expand All @@ -116,7 +116,7 @@ jobs:
fi
- name: Setup Ninja
uses: seanmiddleditch/gha-setup-ninja@v4
uses: seanmiddleditch/gha-setup-ninja@v5

- name: Get Host Architecture
shell: bash
Expand Down Expand Up @@ -168,7 +168,7 @@ jobs:
- name: Cache ccache files on non-Windows
if: matrix.platform.os_type != 'windows'
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${RUNNER_WORKSPACE}/.ccache
key:
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
echo "artifacts_path=${RUNNER_WORKSPACE}/install-antimony" >> "${GITHUB_ENV}"
- name: Upload Antimony binaries
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{env.artifacts_name}}
path: ${{env.artifacts_path}}
Expand Down

0 comments on commit ec93bd5

Please sign in to comment.