Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/add-lang.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
fi

# Check out repo:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: next-release

Expand All @@ -44,7 +44,7 @@ jobs:
# Check po4a cache. If CACHE_HIT: true, retrieve the cache.
# If not, install po4a and its dependencies and copy them all to a folder (~/po4a/) to be cached:
- name: Check for po4a cache
uses: actions/cache@v1.0.3
uses: actions/cache@v3
id: cache-po4a
with:
path: "~/po4a"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jekyll.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Paths changes filter. Detects if there's been a change to any files defined in the filter:
- uses: dorny/paths-filter@v2
Expand All @@ -25,7 +25,7 @@ jobs:

# Retrieve po4a installation cache or create it if not found:
- name: Check for po4a cache
uses: actions/cache@v1.0.3
uses: actions/cache@v3
id: cache-po4a
with:
path: "~/po4a"
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Zip Website
if: ${{ github.event_name == 'pull_request' }}
run: zip -r ${{ github.workspace }}/website.zip _site/*
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
name: Upload Website
if: ${{ github.event_name == 'pull_request' }}
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Retrieve po4a installation cache or create it if not found:
- name: Check for po4a cache
uses: actions/cache@v1.0.3
uses: actions/cache@v3
id: cache-po4a
with:
path: "~/po4a"
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: ${{ github.sha }} update from release
uses: devmasx/merge-branch@v1.3.1
with:
Expand Down