From 06396a5f41da626d5af31d2c17c55fa07547699c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Nov 2025 22:10:00 +0000 Subject: [PATCH] Bump the github-actions group across 1 directory with 5 updates Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `5` | | [crystal-lang/install-crystal](https://github.com/crystal-lang/install-crystal) | `1.8.2` | `1.8.3` | | [actions/attest-build-provenance](https://github.com/actions/attest-build-provenance) | `2.4.0` | `3.0.0` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [ncipollo/release-action](https://github.com/ncipollo/release-action) | `1.18.0` | `1.20.0` | Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `crystal-lang/install-crystal` from 1.8.2 to 1.8.3 - [Release notes](https://github.com/crystal-lang/install-crystal/releases) - [Commits](https://github.com/crystal-lang/install-crystal/compare/v1.8.2...v1.8.3) Updates `actions/attest-build-provenance` from 2.4.0 to 3.0.0 - [Release notes](https://github.com/actions/attest-build-provenance/releases) - [Changelog](https://github.com/actions/attest-build-provenance/blob/main/RELEASE.md) - [Commits](https://github.com/actions/attest-build-provenance/compare/v2.4.0...v3.0.0) Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](https://github.com/actions/upload-artifact/compare/v4...v5) Updates `ncipollo/release-action` from 1.18.0 to 1.20.0 - [Release notes](https://github.com/ncipollo/release-action/releases) - [Commits](https://github.com/ncipollo/release-action/compare/v1.18.0...v1.20.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: crystal-lang/install-crystal dependency-version: 1.8.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/attest-build-provenance dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ncipollo/release-action dependency-version: 1.20.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] --- .github/workflows/acceptance.yml | 2 +- .github/workflows/build.yml | 4 ++-- .github/workflows/lint.yml | 4 ++-- .github/workflows/release.yml | 10 +++++----- .github/workflows/test.yml | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/acceptance.yml b/.github/workflows/acceptance.yml index 9e2e080..61fdf1e 100644 --- a/.github/workflows/acceptance.yml +++ b/.github/workflows/acceptance.yml @@ -16,7 +16,7 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: acceptance uses: ./ diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d93749..68b04ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -19,14 +19,14 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: fetch crystal version id: crystal-version run: echo "crystal=$(cat .crystal-version)" >> $GITHUB_OUTPUT - name: install crystal - uses: crystal-lang/install-crystal@v1.8.2 + uses: crystal-lang/install-crystal@v1.8.3 with: crystal: ${{ steps.crystal-version.outputs.crystal }} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index fe566e8..90e00b8 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -19,14 +19,14 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: fetch crystal version id: crystal-version run: echo "crystal=$(cat .crystal-version)" >> $GITHUB_OUTPUT - name: install crystal - uses: crystal-lang/install-crystal@v1.8.2 + uses: crystal-lang/install-crystal@v1.8.3 with: crystal: ${{ steps.crystal-version.outputs.crystal }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c196269..46427ae 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,14 +16,14 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: fetch crystal version id: crystal-version run: echo "crystal=$(cat .crystal-version)" >> $GITHUB_OUTPUT - name: install crystal - uses: crystal-lang/install-crystal@v1.8.2 + uses: crystal-lang/install-crystal@v1.8.3 with: crystal: ${{ steps.crystal-version.outputs.crystal }} @@ -45,11 +45,11 @@ jobs: mv ./bin/github-action ./releases/github-action-linux-amd64 - name: generate artifact attestation - uses: actions/attest-build-provenance@v2.4.0 + uses: actions/attest-build-provenance@v3.0.0 with: subject-path: 'releases/*' - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: binaries path: releases/ @@ -62,7 +62,7 @@ jobs: - name: push release id: release - uses: ncipollo/release-action@v1.18.0 + uses: ncipollo/release-action@v1.20.0 with: artifacts: "./releases/*" tag: ${{ env.VERSION }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4301ca7..8daff52 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,14 +19,14 @@ jobs: steps: - name: checkout - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: fetch crystal version id: crystal-version run: echo "crystal=$(cat .crystal-version)" >> $GITHUB_OUTPUT - name: install crystal - uses: crystal-lang/install-crystal@v1.8.2 + uses: crystal-lang/install-crystal@v1.8.3 with: crystal: ${{ steps.crystal-version.outputs.crystal }}