-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating the GH actions to the latest versions to fix deprecation warnings.
- Loading branch information
1 parent
5eb9673
commit 16552b6
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,18 +16,18 @@ jobs: | |
# Steps represent a sequence of tasks that will be executed as part of the job | ||
steps: | ||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
- name: Configure staging build | ||
run: sed -i 's/https:\/\/rism\.info/https:\/\/stage\.rism\.info/g' _config.yml | ||
if: endsWith(github.ref, '/staging') | ||
|
||
# Use GitHub Actions' cache to shorten build times and decrease load on servers | ||
- uses: actions/cache@v2.1.0 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: vendor/bundle | ||
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}-v2 | ||
restore-keys: | | ||
${{ runner.os }}-gems-v2 | ||
# Tune the jekyll action | ||
- uses: lemonarc/[email protected] | ||
- uses: lemonarc/[email protected] |