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 @@ -24,7 +24,7 @@ jobs:
# the order of the checkout actions is important because all contents of
# the target folder of the checkout action is removed
- name: "Clone the package"
uses: actions/checkout@v5
uses: actions/checkout@v6
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@stertooy I would split these two changes into separate PRs.
Both are valuable and I accept them.

with:
repository: ${{ matrix.package }}

Expand All @@ -36,7 +36,7 @@ jobs:
sed -i -E "s|(Date[[:space:]]*:?=[[:space:]]*['\"]).*(['\"])|\1${DATE}\2|" "PackageInfo.g"

- name: "Check out this repository"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
path: .this-action/

Expand All @@ -56,12 +56,12 @@ jobs:

test-scripts:
name: "Test the scripts used by this action"
runs-on: ubuntu-latest
runs-on: ubuntu-slim

steps:

- name: "Check out this repository"
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: "Shellcheck"
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: gap-actions/setup-gap@v3
- uses: gap-actions/build-pkg-docs@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ runs:
target_commitish: ${{ github.sha }}

- name: "Upload the release"
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
if: ${{ inputs.dry-run == 'true' }}
with:
name: "Release_for_${{ env.PKGNAME }}_${{ env.VERSION }}"
Expand Down