Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- elixir: 1.18.x
otp: 27.x
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- elixir: 1.18.x
otp: 27.x
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
- name: Set git to use original line ending (Windows)
if: runner.os == 'Windows'
run: git config --global core.autocrlf false
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: erlef/setup-beam@v1
with:
otp-version: ${{matrix.otp}}
Expand All @@ -186,7 +186,7 @@ jobs:
name: Static analysis
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: erlef/setup-beam@v1
with:
otp-version: 27.x
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docsite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
image: squidfunk/mkdocs-material
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Build
run: mkdocs build -s
- name: Upload artifact
Expand All @@ -32,7 +32,7 @@ jobs:
max-parallel: 1
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Download artifact
uses: actions/download-artifact@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-asset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Validate release
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Validate version consistency
run: |
VERSION="$(cat ./VERSION | tr -d '[:space:]')"
Expand All @@ -34,7 +34,7 @@ jobs:
version: ${{ steps.version.outputs.version }}
is_prerelease: ${{ steps.version.outputs.is_prerelease }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Extract version info
id: version
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-22.04
needs: build
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0 # Needed for changelog generation

Expand Down
Loading