Skip to content

Commit

Permalink
Bump github actions version
Browse files Browse the repository at this point in the history
  • Loading branch information
dirkvdb committed Aug 28, 2024
1 parent 5f5b0fd commit 3eb3ab7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/conda-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
os: ["ubuntu-latest", "windows-2022"]
steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- uses: conda-incubator/setup-miniconda@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
run: brew install nasm ninja
- name: Cache vcpkg binary
id: cache-vcpkg-bin
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
deps/vcpkg/vcpkg
deps/vcpkg/vcpkg.exe
key: ${{ runner.os }}-${{ hashFiles('deps/vcpkg/bootstrap.cmake') }}
- name: Cache vcpkg packages
id: cache-vcpkg
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.cache/vcpkg
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/vcpkg-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ jobs:

steps:
- name: Clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: true
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
id: setup-python
with:
python-version: "3.x"
Expand All @@ -36,15 +36,15 @@ jobs:
run: brew install nasm ninja
- name: Cache vcpkg binary
id: cache-vcpkg-bin
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
deps/vcpkg/vcpkg
deps/vcpkg/vcpkg.exe
key: ${{ runner.os }}-${{ hashFiles('deps/vcpkg/bootstrap.cmake') }}
- name: Cache vcpkg packages
id: cache-vcpkg
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
~/.cache/vcpkg
Expand Down

0 comments on commit 3eb3ab7

Please sign in to comment.