Skip to content

Commit

Permalink
CI: Bump workflow action versions.
Browse files Browse the repository at this point in the history
Fix deprecation warnings in GitHub actions output.

Signed-off-by: Phil Howard <github@gadgetoid.com>
  • Loading branch information
Gadgetoid authored and xs5871 committed Jun 12, 2024
1 parent d223935 commit ff66c3b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
steps:
- run: echo "A ${{ github.event_name }} event trigged build of branch ${{ github.ref }}, repository ${{ github.repository }}"
- name: Check out repository code
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache mpy-cross
id: cache-mpy-cross
uses: actions/cache@v3
uses: actions/cache@v4
env:
cache-name: cache-mpy-cross-8
with:
Expand All @@ -41,7 +41,7 @@ jobs:
run: |
ls -la .compiled/kmk/
- name: upload zip
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: kmk-${{ steps.sha.outputs.SHA }}+mpy-cross-${{ matrix.mpy-cross-release }}
path: .compiled/kmk/
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- run: sudo apt-get install aspell
- run: make spellcheck
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11' # Version range or exact version of a Python version to use, using SemVer's version range syntax
- run: python -m pip install --upgrade pipenv wheel
Expand Down

0 comments on commit ff66c3b

Please sign in to comment.