✨ Update actions version to the latest version to prevent errors
This commit is contained in:
6
.github/workflows/docker-publish.yml
vendored
6
.github/workflows/docker-publish.yml
vendored
@@ -16,13 +16,13 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
uses: docker/setup-buildx-action@v2
|
||||
uses: docker/setup-buildx-action@v3
|
||||
|
||||
- name: Log in to the Container registry
|
||||
uses: docker/login-action@v2
|
||||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ github.actor }}
|
||||
|
||||
2
.github/workflows/editorconfig-check.yml
vendored
2
.github/workflows/editorconfig-check.yml
vendored
@@ -18,6 +18,6 @@ jobs:
|
||||
name: Run EditorConfig Check
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: editorconfig-checker/action-editorconfig-checker@main
|
||||
- run: editorconfig-checker -config .ecrc.json
|
||||
|
||||
8
.github/workflows/pake-cli.yaml
vendored
8
.github/workflows/pake-cli.yaml
vendored
@@ -62,10 +62,10 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install node
|
||||
uses: actions/setup-node@v3
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 18
|
||||
|
||||
@@ -104,7 +104,7 @@ jobs:
|
||||
npm install pake-cli
|
||||
|
||||
- name: Rust cache restore
|
||||
uses: actions/cache/restore@v3
|
||||
uses: actions/cache/restore@v4.2.0
|
||||
id: cache_store
|
||||
with:
|
||||
path: |
|
||||
@@ -145,7 +145,7 @@ jobs:
|
||||
retention-days: 3
|
||||
|
||||
- name: Rust cache store
|
||||
uses: actions/cache/save@v3
|
||||
uses: actions/cache/save@v4.2.0
|
||||
if: steps.cache_store.outputs.cache-hit != 'true'
|
||||
with:
|
||||
path: |
|
||||
|
||||
2
.github/workflows/pake_build_next.yaml
vendored
2
.github/workflows/pake_build_next.yaml
vendored
@@ -13,7 +13,7 @@ jobs:
|
||||
apps_config: ${{ steps.read-apps-config.outputs.apps_config }}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
- name: Get Apps Config
|
||||
id: read-apps-config
|
||||
run: |
|
||||
|
||||
6
.github/workflows/pake_build_single_app.yaml
vendored
6
.github/workflows/pake_build_single_app.yaml
vendored
@@ -63,7 +63,7 @@ jobs:
|
||||
target: x86_64-apple-darwin
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install Rust
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
@@ -80,7 +80,7 @@ jobs:
|
||||
|
||||
- name: Rust cache restore
|
||||
id: cache_store
|
||||
uses: actions/cache/restore@v3
|
||||
uses: actions/cache/restore@v4.2.0
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/bin/
|
||||
@@ -130,7 +130,7 @@ jobs:
|
||||
git checkout -- src-tauri/Cargo.lock
|
||||
|
||||
- name: Rust cache store
|
||||
uses: actions/cache/save@v3
|
||||
uses: actions/cache/save@v4.2.0
|
||||
with:
|
||||
path: |
|
||||
~/.cargo/bin/
|
||||
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
- macos-latest
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
- uses: rui314/setup-mold@v1
|
||||
- uses: taiki-e/install-action@v1
|
||||
@@ -56,7 +56,7 @@ jobs:
|
||||
- macos-latest
|
||||
fail-fast: false
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
components: clippy
|
||||
@@ -76,7 +76,7 @@ jobs:
|
||||
name: Enforce codebase style (cargo fmt)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v4
|
||||
- uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
components: rustfmt
|
||||
|
||||
Reference in New Issue
Block a user