Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2022-10-14 05:19:04 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-10-14 06:36:17 +0300
commit356e79b3cdc553db047b46e0d5ebfb8c10d746a5 (patch)
treed06eac7237ea0caa6a3e35bc483d6046d61cf6a3
parent2b710dfed5b495d0d32f1aeec16047c009490744 (diff)
Bump actions/cache from 2 to 3.0.11
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v2...v3.0.11) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
-rw-r--r--.github/workflows/analysis.yml8
-rw-r--r--.github/workflows/config.yml2
-rw-r--r--.github/workflows/coverity.yml2
-rw-r--r--.github/workflows/linux.yml10
-rw-r--r--.github/workflows/macos.yml12
-rw-r--r--.github/workflows/pvs-studio.yml4
-rw-r--r--.github/workflows/windows-msys2.yml8
7 files changed, 23 insertions, 23 deletions
diff --git a/.github/workflows/analysis.yml b/.github/workflows/analysis.yml
index a442c758b..7dd37eb0c 100644
--- a/.github/workflows/analysis.yml
+++ b/.github/workflows/analysis.yml
@@ -69,7 +69,7 @@ jobs:
echo "::set-output name=today::$(date -I)"
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-ccache
with:
path: ${{ steps.prep-ccache.outputs.dir }}
@@ -78,7 +78,7 @@ jobs:
ccache-static-clang-${{ steps.prep-ccache.outputs.yesterday }}
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}
@@ -176,7 +176,7 @@ jobs:
echo "::set-output name=today::$(date -I)"
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-ccache
with:
path: ${{ steps.prep-ccache.outputs.dir }}
@@ -184,7 +184,7 @@ jobs:
restore-keys: ccache-sanitizers-${{ steps.prep-ccache.outputs.yesterday }}
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}
diff --git a/.github/workflows/config.yml b/.github/workflows/config.yml
index 35e617ab4..3ea318217 100644
--- a/.github/workflows/config.yml
+++ b/.github/workflows/config.yml
@@ -70,7 +70,7 @@ jobs:
shell: bash
run: echo ::set-output name=date::$(date +%Y-%W)
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-msys2
if: matrix.system.name == 'Windows'
with:
diff --git a/.github/workflows/coverity.yml b/.github/workflows/coverity.yml
index c742eb451..10c6c77b1 100644
--- a/.github/workflows/coverity.yml
+++ b/.github/workflows/coverity.yml
@@ -44,7 +44,7 @@ jobs:
sudo pip3 install --upgrade meson ninja
- name: Prepare the Coverity package cache
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
id: cache-coverity
with:
path: ${{ env.PACKAGE_DIR }}
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index 191301878..2af516346 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -119,7 +119,7 @@ jobs:
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
echo "::set-output name=name_hash::$(echo '${{ matrix.conf.name }}' | shasum | cut -b-8)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-ccache
with:
path: ${{ steps.prep-ccache.outputs.dir }}
@@ -128,7 +128,7 @@ jobs:
ccache-${{ matrix.conf.os }}-${{ steps.prep-ccache.outputs.name_hash }}-${{ steps.prep-ccache.outputs.yesterday }}-1
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}
@@ -187,7 +187,7 @@ jobs:
echo "::set-output name=today::$(date -I)"
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-ccache
with:
path: ${{ steps.prep-ccache.outputs.dir }}
@@ -196,7 +196,7 @@ jobs:
ccache-linux-release-${{ steps.prep-ccache.outputs.yesterday }}-1
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}-1
@@ -241,7 +241,7 @@ jobs:
sudo chmod 777 "${CLAMDB_DIR}"
echo "::set-output name=today::$(date -I)"
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-clamdb
with:
path: ${{ env.CLAMDB_DIR }}/*.cvd
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
index 5467aa64f..c5b4d970f 100644
--- a/.github/workflows/macos.yml
+++ b/.github/workflows/macos.yml
@@ -91,7 +91,7 @@ jobs:
echo "::set-output name=today::$(date +%F)"
echo "::set-output name=name_hash::$(echo '${{ matrix.conf.name }} ${{ matrix.conf.arch }}' | shasum | cut -b-8)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
if: matrix.conf.needs_deps
with:
path: ${{ steps.prep-caches.outputs.brew_dir }}
@@ -105,7 +105,7 @@ jobs:
${{ matrix.conf.packages }} \
$(cat packages/macos-latest-brew.txt)
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
if: matrix.conf.needs_deps
with:
path: ${{ steps.prep-caches.outputs.ccache_dir }}
@@ -115,7 +115,7 @@ jobs:
ccache-macos-debug-
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}
@@ -202,7 +202,7 @@ jobs:
echo "::set-output name=ccache_dir::$CCACHE_DIR"
echo "::set-output name=today::$(date +%F)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
if: matrix.runner.needs_deps
with:
path: ${{ steps.prep-caches.outputs.brew_dir }}
@@ -220,7 +220,7 @@ jobs:
- name: Fetch the libffi subproject for Glib
run: ./scripts/fetch-libffi-subproject.sh
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
if: matrix.runner.needs_deps
with:
path: ${{ steps.prep-caches.outputs.ccache_dir }}
@@ -228,7 +228,7 @@ jobs:
restore-keys: ccache-macos-release-${{ matrix.runner.arch }}-
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}
diff --git a/.github/workflows/pvs-studio.yml b/.github/workflows/pvs-studio.yml
index bf19d59b2..84be302e1 100644
--- a/.github/workflows/pvs-studio.yml
+++ b/.github/workflows/pvs-studio.yml
@@ -28,7 +28,7 @@ jobs:
./scripts/log-env.sh
mkdir -p pvs-package
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-pvs
with:
path: pvs-package
@@ -47,7 +47,7 @@ jobs:
pvs-studio-analyzer credentials "${{ secrets.PvsStudioName }}" "${{ secrets.PvsStudioKey }}"
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}
diff --git a/.github/workflows/windows-msys2.yml b/.github/workflows/windows-msys2.yml
index 93e87c2fa..4a5b1b719 100644
--- a/.github/workflows/windows-msys2.yml
+++ b/.github/workflows/windows-msys2.yml
@@ -112,7 +112,7 @@ jobs:
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
echo "::set-output name=name_hash::$(echo '${{ matrix.conf.name }}' | shasum | cut -b-8)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-ccache
with:
path: ${{ steps.prep-ccache.outputs.dir }}
@@ -121,7 +121,7 @@ jobs:
ccache-msys2-${{ matrix.conf.sys }}-${{ steps.prep-ccache.outputs.name_hash }}-${{ steps.prep-ccache.outputs.yesterday }}-3
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}-3
@@ -210,7 +210,7 @@ jobs:
echo "::set-output name=today::$(date -I)"
echo "::set-output name=yesterday::$(date --date=yesterday -I)"
- - uses: actions/cache@v2
+ - uses: actions/cache@v3.0.11
id: cache-ccache
with:
path: ${{ steps.prep-ccache.outputs.dir }}
@@ -219,7 +219,7 @@ jobs:
ccache-msys2-${{matrix.conf.sys}}-release-${{ steps.prep-ccache.outputs.yesterday }}-3
- name: Cache subprojects
- uses: actions/cache@v2
+ uses: actions/cache@v3.0.11
with:
path: subprojects/packagecache
key: subprojects-${{ hashFiles('subprojects/*.wrap') }}-3