Skip to content

Commit

Permalink
Bump up actions versions as GHA bumps node version to 20
Browse files Browse the repository at this point in the history
  • Loading branch information
pramsey committed Jun 6, 2024
1 parent 960c39f commit d0d3d5a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,10 +222,10 @@ jobs:
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Retrieve build cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
id: restore-cache
with:
path: .ccache
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
ccache -s
- name: Save build cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
Expand Down Expand Up @@ -303,7 +303,7 @@ jobs:

steps:
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'Setup'
uses: msys2/setup-msys2@v2
Expand All @@ -313,7 +313,7 @@ jobs:

- name: Retrieve build cache
id: restore-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: .ccache
key: windows-mingw-${{ matrix.build_type}}-${{ github.ref_name }}-${{ github.run_id }}
Expand All @@ -332,7 +332,7 @@ jobs:
cmake --build . -j 4
- name: Save build cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
Expand All @@ -358,14 +358,14 @@ jobs:
runs-on: ${{ matrix.ci.os }}
steps:
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'Setup'
run: choco install ccache

- name: Retrieve build cache
id: restore-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: .ccache
key: windows-msvc-${{ matrix.build_type}}-${{ github.ref_name }}-${{ github.run_id }}
Expand Down Expand Up @@ -427,11 +427,11 @@ jobs:
clang++ --version
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Retrieve build cache
id: restore-cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: .ccache
key: ${{ runner.os }}-${{ matrix.xcode }}-${{ matrix.build_type}}-${{ matrix.cxxstd }}-${{ github.ref_name }}-${{ github.run_id }}
Expand All @@ -453,7 +453,7 @@ jobs:
cmake --build . --config ${BUILD_TYPE} -j 4
- name: Save build cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: .ccache
key: ${{ steps.restore-cache.outputs.cache-primary-key }}
Expand All @@ -475,7 +475,7 @@ jobs:
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install cppcheck
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'cppcheck'
run: |
Expand All @@ -496,7 +496,7 @@ jobs:
echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: geos

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:

- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
- name: 'Check Out'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Get tag
id: tag
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
sudo -E apt-get -yq --no-install-suggests --no-install-recommends install make doxygen
- name: 'Check Out 📗'
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 'Hugo Build 🛠'
# ...or replace 'master' with a full version tag, such as: v0.64.1
Expand Down

0 comments on commit d0d3d5a

Please sign in to comment.