From 80f64697dc793e72fb96ef96543e71e96b5277a1 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Fri, 26 Jan 2024 17:51:28 +0100 Subject: [PATCH] Update Github actions workflow to use new versions of actions --- .github/workflows/ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6aefe0645..543afe5bb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -409,14 +409,14 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | C:/vcpkg_binary_cache key: vcpkg-binary-cache-${{ matrix.os }}-${{ github.run_id }} restore-keys: | vcpkg-binary-cache-${{ matrix.os }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | C:/postgis.zip @@ -438,7 +438,7 @@ jobs: working-directory: build if: matrix.os == 'windows-2022' - name: 'Upload Artifact' - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: osm2pgsql-win64 path: c:/artifact @@ -453,12 +453,12 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 with: path: | C:/postgis.zip key: postgis-cache - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: osm2pgsql-win64 - uses: ./.github/actions/win-postgres