From 91f3891e662778cd1c80a5eaf91d8502e605c55b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Aug 2025 21:20:48 +0000 Subject: [PATCH] chore(deps): bump actions/checkout from 4 to 5 Bumps [actions/checkout](https://github.com/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) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 10 +++++----- .github/workflows/lint-commit.yaml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3444b212..2aa79015 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: # Step: Check out the code. - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Step: Define how to cache deps. Restores existing cache if present. - name: Cache deps @@ -83,7 +83,7 @@ jobs: # Step: Check out the code. - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 # Step: Define how to cache deps. Restores existing cache if present. - name: Cache deps @@ -145,7 +145,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - uses: extractions/setup-just@v3 - name: Set up Elixir @@ -179,7 +179,7 @@ jobs: matrix: ${{ steps.set-matrix.outputs.matrix }} steps: - name: Checkout to repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Set matrix data id: set-matrix run: echo "matrix=$(jq -c . < .github/matrix.json)" >> $GITHUB_OUTPUT @@ -192,7 +192,7 @@ jobs: matrix: ${{ fromJson(needs.prep-matrix.outputs.matrix) }} steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@v5 - uses: extractions/setup-just@v3 - name: Set up Elixir diff --git a/.github/workflows/lint-commit.yaml b/.github/workflows/lint-commit.yaml index c5c80815..57e66e5d 100644 --- a/.github/workflows/lint-commit.yaml +++ b/.github/workflows/lint-commit.yaml @@ -13,7 +13,7 @@ jobs: name: commitlint steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: amannn/action-semantic-pull-request@v5 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50d864fd..de5ed05f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,7 +46,7 @@ jobs: - uses: mlugg/setup-zig@v2 with: version: "0.14.1" - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: just release-all env: MIX_ENV: prod