Skip to content

Commit

Permalink
Fix GitHub Actions by updating outdated versions. (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
demiankatz authored Jun 20, 2024
1 parent b34f607 commit 61f367b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,26 +14,26 @@ jobs:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.0'
php-version: '8.3'
extensions: intl, xsl
tools: composer:2

- name: Setup Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: ${{ matrix.java-version }}

- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up VuFind environment
run: |
echo VUFIND_HOME=~/vufind >> $GITHUB_ENV
echo VUFIND_LOCAL_DIR=$VUFIND_HOME/local >> $GITHUB_ENV
- name: Cache VuFind data
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/vufind
key: "vufind-${{ github.sha }}"
Expand Down

0 comments on commit 61f367b

Please sign in to comment.