diff --git a/.github/workflows/ci-conan.yml b/.github/workflows/ci-conan.yml index 6a154b8b..c8a01941 100644 --- a/.github/workflows/ci-conan.yml +++ b/.github/workflows/ci-conan.yml @@ -140,7 +140,7 @@ jobs: - uses: actions/checkout@v4 - run: echo "cache_id=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_ENV - name: Cache Conan data - uses: actions/cache@v3 + uses: actions/cache@v4 if: always() env: cache-name: cache-conan-data @@ -185,7 +185,7 @@ jobs: run: | sudo xcode-select -s /Applications/Xcode_${{ matrix.config.compiler.version }}.app && /usr/bin/xcodebuild -version - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.8" - name: Install Ninja @@ -243,7 +243,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.8" - name: Install Conan diff --git a/.github/workflows/ci-formatting.yml b/.github/workflows/ci-formatting.yml index 84d90c92..ad053fb7 100644 --- a/.github/workflows/ci-formatting.yml +++ b/.github/workflows/ci-formatting.yml @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Set up Python 3.8 - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: 3.8 - name: Install dependencies diff --git a/.github/workflows/ci-test-package-cmake.yml b/.github/workflows/ci-test-package-cmake.yml index 82000cb9..353685a5 100644 --- a/.github/workflows/ci-test-package-cmake.yml +++ b/.github/workflows/ci-test-package-cmake.yml @@ -139,7 +139,7 @@ jobs: - uses: actions/checkout@v4 - run: echo "cache_id=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_ENV - name: Cache Conan data - uses: actions/cache@v3 + uses: actions/cache@v4 if: always() env: cache-name: cache-conan-data @@ -179,7 +179,7 @@ jobs: run: | sudo xcode-select -s /Applications/Xcode_${{ matrix.config.compiler.version }}.app && /usr/bin/xcodebuild -version - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.8" - name: Install Ninja diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 6f29802c..fafd4100 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -82,7 +82,7 @@ jobs: - run: echo "cache_id=$(/bin/date -u "+%Y%m%d")" >> $GITHUB_ENV - name: Cache Conan data if: matrix.language == 'cpp' - uses: actions/cache@v3 + uses: actions/cache@v4 env: cache-name: cache-conan-data with: @@ -95,7 +95,7 @@ jobs: build-${{ matrix.os }}- - name: Set up Python if: matrix.language == 'cpp' - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: "3.8" - name: Conan build diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 4f797de2..2c86f575 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -36,11 +36,11 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v4 + - uses: actions/setup-python@v5 with: python-version: 3.x - run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: key: mkdocs-material-${{ env.cache_id }} path: .cache