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
2 changes: 1 addition & 1 deletion .github/actions/build-and-push-image/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ runs:
using: composite
steps:
- name: Checkout Repository 🛎️
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
url: 'https://ghcr.io/jeffmur/fhel:builder'
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand All @@ -32,7 +32,7 @@ jobs:
needs: deploy
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'
- uses: dart-lang/setup-dart@v1
Expand All @@ -30,7 +30,7 @@ jobs:
IMAGE_TAG: ${{ steps.tag.outputs.TAG || 'builder' }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
image: ghcr.io/jeffmur/fhel:${{ needs.build.outputs.IMAGE_TAG }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand All @@ -76,7 +76,7 @@ jobs:
image: ghcr.io/jeffmur/fhel:${{ needs.build.outputs.IMAGE_TAG }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand All @@ -90,7 +90,7 @@ jobs:
image: ghcr.io/jeffmur/fhel:${{ needs.build.outputs.IMAGE_TAG }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand All @@ -104,7 +104,7 @@ jobs:
image: ghcr.io/jeffmur/fhel:${{ needs.build.outputs.IMAGE_TAG }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
submodules: 'true'

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
# Extract the binary.version
- run: echo "BINARY_VER=$(cat binary.version)" >> $GITHUB_ENV
# Extract the version from CMakeLists.txt
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

runs-on: ${{ matrix.dist.runner }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: "true"

Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
name: pub.dev
url: https://pub.dev/packages/fhel
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: "true"
- uses: dart-lang/setup-dart@v1
Expand Down
Loading