Skip to content

Commit

Permalink
Merge pull request #4 from Eeems-Org/Eeems-patch-1
Browse files Browse the repository at this point in the history
Use latest version of various actions
  • Loading branch information
Eeems authored Apr 5, 2024
2 parents 2780a32 + 5502d28 commit 51855c7
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,17 @@ jobs:
packages: libfuse-dev
version: 1.0
- name: Install Protoc
uses: arduino/setup-protoc@v2
uses: arduino/setup-protoc@v3
with:
version: "25.x"
- name: Checkout the Git repository
uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Cache test files
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: |
.venv/bin/codexctl.bin
Expand All @@ -52,17 +52,17 @@ jobs:
packages: libfuse-dev ccache
version: 1.0
- name: Install Protoc
uses: arduino/setup-protoc@v2
uses: arduino/setup-protoc@v3
with:
version: "25.x"
- name: Checkout the Git repository
uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Nuitka ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.nuitka
key: ${{ github.job }}-ccache-ubuntu-latest
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
patchelf
protoc
- name: Nuitka ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.nuitka
key: ${{ github.job }}-ccache-alpine-v3.18
Expand All @@ -114,12 +114,12 @@ jobs:
steps:
- name: Checkout the Git repository
uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Nuitka ccache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/.nuitka
key: ${{ github.job }}-ccache-remarkable-2.15.1
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
source /opt/lib/nuitka/bin/activate
pip install --upgrade pip
make -C /src executable
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: rmufuse-remarkable
path: dist
Expand All @@ -172,14 +172,14 @@ jobs:
- '3.11'
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
cache: 'pip'
- name: Install Protoc
uses: arduino/setup-protoc@v2
uses: arduino/setup-protoc@v3
with:
version: "25.x"
- name: Install build tool
Expand All @@ -197,14 +197,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout the Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: 'pip'
- name: Install Protoc
uses: arduino/setup-protoc@v2
uses: arduino/setup-protoc@v3
with:
version: "25.x"
- name: Install build tool
Expand Down

0 comments on commit 51855c7

Please sign in to comment.