Skip to content

Commit

Permalink
update github actions config file
Browse files Browse the repository at this point in the history
use latest 3rd party actions (cache, checkout, upload-artifact git new version)
  • Loading branch information
vaintroub authored Nov 22, 2024
1 parent 80de759 commit b53b897
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/cmake-single-os.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4


# On Windows, use vcpkg to build, as pgsql driver on build box is bad (crashes during tests)
- name: vcpkg_cache(Windows)
uses: actions/cache@v3
uses: actions/cache@v4
if: runner.os == 'Windows'
id: vcpkg_cache
with:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
- name: upload package(Windows)
if: runner.os == 'Windows'
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.os }}-package
path: ./*.zip
Expand All @@ -77,7 +77,7 @@ jobs:
cmake --install . --config Release --prefix install_dir
- name: Archive build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: build-${{ inputs.os }}
retention-days: 1
Expand All @@ -91,7 +91,7 @@ jobs:
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install ninja (macOS)
if: runner.os == 'macOS'
run : |
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: install client libs (macOS)
if: runner.os == 'macOS'
run : |
Expand Down

0 comments on commit b53b897

Please sign in to comment.