Skip to content

Commit

Permalink
CI: Use the latest version of all actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Geod24 committed Oct 2, 2023
1 parent b4cc447 commit 5346969
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ jobs:

- name: 'Restore ebtree ${{ matrix.ebtree_version }} from cache'
id: cache-ebtree
uses: actions/cache@v1
uses: actions/cache@v3
with:
path: ${{ github.workspace }}/tools/
key: ebtree-${{ matrix.ebtree_version }}

- name: 'Checkout ebtree ${{ matrix.ebtree_version }}'
uses: actions/checkout@v2
uses: actions/checkout@v4
if: steps.cache-ebtree.outputs.cache-hit != 'true'
with:
repository: sociomantic-tsunami/ebtree
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:
compiler: ${{ matrix.dc }}

# Checkout this repository and its submodules
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: true
# Required for codecov (codecov/codecov-action#190)
Expand All @@ -92,6 +92,6 @@ jobs:
- name: 'Upload coverage'
if: ${{ matrix.coverage == 1 }}
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v3
with:
flags: ${{ matrix.dc }}-${{ matrix.flavor }}

0 comments on commit 5346969

Please sign in to comment.