Skip to content

Commit

Permalink
Merge pull request #787 from Daft-Freak/actions-update
Browse files Browse the repository at this point in the history
Update actions for deprecation warnings
  • Loading branch information
Gadgetoid authored Jan 13, 2023
2 parents e7b1a31 + cc385db commit 0de5ee4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-20.04

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

- name: Install deps
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Setup cache
id: cache-system-libraries
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ${{env.EM_CACHE_FOLDER}}
key: ${{env.EM_VERSION}}-${{runner.os}}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/Visual Studio.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: windows-latest

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

- name: Install deps
shell: bash
Expand All @@ -19,7 +19,7 @@ jobs:
python -m pip install 32blit
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
uses: microsoft/setup-msbuild@v1.1.3

- name: Build
run: msbuild.exe vs/32blit.sln
8 changes: 4 additions & 4 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,26 +64,26 @@ jobs:

steps:
- name: Checkout 32Blit SDK
uses: actions/checkout@v2
uses: actions/checkout@v3

# pico sdk/extras for some builds
- name: Checkout Pico SDK
if: matrix.pico-sdk
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: raspberrypi/pico-sdk
path: pico-sdk
submodules: true

- name: Checkout Pico Extras
if: matrix.pico-sdk
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: raspberrypi/pico-extras
path: pico-extras

- name: Cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: /home/runner/.ccache
key: ccache-${{matrix.cache-key}}-${{github.ref}}-${{github.sha}}
Expand Down

0 comments on commit 0de5ee4

Please sign in to comment.