Skip to content

Commit

Permalink
Merge pull request #2122 from joto/update-gh-workflow
Browse files Browse the repository at this point in the history
Update Github actions workflow to use new versions of actions
  • Loading branch information
pnorman authored Jan 26, 2024
2 parents 59bb561 + 80f6469 commit cc8470b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit cc8470b

Please sign in to comment.