From 6e1213b737e5ec306597f7e117afa689a61dfed9 Mon Sep 17 00:00:00 2001
From: Alexander Koz
Date: Mon, 4 Mar 2024 14:00:52 +0400
Subject: [PATCH 1/2] CI: update action create-branch
---
.github/workflows/update.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml
index 1b29e43a..cab99524 100644
--- a/.github/workflows/update.yml
+++ b/.github/workflows/update.yml
@@ -68,7 +68,7 @@ jobs:
- name: Create Branch
id: branch
- uses: peterjgrainger/action-create-branch@v2.3.0
+ uses: peterjgrainger/action-create-branch@v3.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
From be82b69a688fb93ecc833458fc17416133cbad27 Mon Sep 17 00:00:00 2001
From: Alexander Koz
Date: Mon, 4 Mar 2024 15:20:20 +0400
Subject: [PATCH 2/2] CI: update action cache
---
.github/workflows/tests.yml | 14 +++++++-------
.github/workflows/update.yml | 4 ++--
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
index 934ff372..0e9165e1 100644
--- a/.github/workflows/tests.yml
+++ b/.github/workflows/tests.yml
@@ -57,7 +57,7 @@ jobs:
- uses: actions/checkout@v4
- name: Cache
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: |
target/
@@ -72,7 +72,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
@@ -173,7 +173,7 @@ jobs:
- uses: actions/checkout@v4
- name: Cache
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: |
target/
@@ -231,7 +231,7 @@ jobs:
- uses: actions/checkout@v4
- name: Cache
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: |
target/
@@ -246,7 +246,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
@@ -329,7 +329,7 @@ jobs:
- uses: actions/checkout@v4
- name: Cache
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: |
~/.cargo
@@ -349,7 +349,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0
diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml
index cab99524..38136a94 100644
--- a/.github/workflows/update.yml
+++ b/.github/workflows/update.yml
@@ -193,7 +193,7 @@ jobs:
ref: ${{ needs.new-branch.outputs.working }}
- name: Cache
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: |
target/
@@ -203,7 +203,7 @@ jobs:
- name: Cache LLVM
id: cache-llvm
if: runner.os == 'Windows'
- uses: actions/cache@v3
+ uses: actions/cache@v4.0.1
with:
path: ${{ runner.temp }}/llvm
key: llvm-14.0