From 97c76bf325948d4cfee776cb8f9c3c8e53bd7c7e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Oct 2023 18:58:40 +0000 Subject: [PATCH 1/3] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/functional-tests.yml | 2 +- .github/workflows/pre-commit.yml | 2 +- .github/workflows/release.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index dbc58e8..af895dd 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -18,7 +18,7 @@ jobs: version: ["0.1.dev0", "0.1.dev1"] runs-on: ${{ matrix.os }}-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ./ with: version: ${{ matrix.version }} diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index d50d018..1c83ced 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -21,7 +21,7 @@ jobs: image: ghcr.io/fabasoad/pre-commit-container:latest options: --user root steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Update git config diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6215133..f2f875c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: name: Create release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Get changelog From fcd374c6751154e0bbd6976d14bb06e9053e5bed Mon Sep 17 00:00:00 2001 From: fabasoad Date: Sat, 7 Oct 2023 22:53:05 +0900 Subject: [PATCH 2/3] Bump igorshubovych/markdownlint-cli from 0.34.0 to 0.37.0 --- .github/workflows/pre-commit.yml | 5 +---- .pre-commit-config.yaml | 8 ++++---- LICENSE | 2 +- README.md | 2 +- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index 1c83ced..f907a89 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -19,15 +19,12 @@ jobs: runs-on: ubuntu-latest container: image: ghcr.io/fabasoad/pre-commit-container:latest - options: --user root steps: - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Update git config - run: | - repo=$(echo "${{ github.repository }}" | cut -d "/" -f 2) - git config --global --add safe.directory "/__w/$repo/$repo" + run: git config --global --add safe.directory "$(pwd)" - name: Run pre-commit on changed files if: ${{ github.event_name == 'pull_request' }} run: | diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index dfd49ce..b9fa35f 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,12 +10,12 @@ repos: hooks: - id: detect-secrets - repo: https://github.com/zricethezav/gitleaks - rev: v8.16.3 + rev: v8.18.0 hooks: - id: gitleaks # Markdown - repo: https://github.com/igorshubovych/markdownlint-cli - rev: v0.34.0 + rev: v0.37.0 hooks: - id: markdownlint-fix stages: ["commit"] @@ -27,14 +27,14 @@ repos: stages: ["push"] # GitHub Actions - repo: https://github.com/rhysd/actionlint - rev: v1.6.24 + rev: v1.6.26 hooks: - id: actionlint args: ["-pyflakes="] stages: ["push"] # Other - repo: https://github.com/pre-commit/mirrors-prettier - rev: v3.0.0-alpha.9-for-vscode + rev: v3.0.3 hooks: - id: prettier stages: ["commit"] diff --git a/LICENSE b/LICENSE index df0d4f2..16ccbd2 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2022 Yevhen Fabizhevskyi +Copyright (c) 2020-2023 Yevhen Fabizhevskyi Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index b493ca3..b607b4e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua) ![Releases](https://img.shields.io/github/v/release/fabasoad/setup-brainfuck-action?include_prereleases) -![Functional Tests](https://github.com/fabasoad/setup-brainfuck-action/workflows/Functional%20Tests/badge.svg) +![functional-tests](https://github.com/fabasoad/setup-brainfuck-action/actions/workflows/functional-tests.yml/badge.svg) ![pre-commit](https://github.com/fabasoad/setup-brainfuck-action/actions/workflows/pre-commit.yml/badge.svg) This action installs one of the brainfuck interpreters called [brainfucky](https://pypi.org/project/brainfucky/). From 3b924b73a9291298e10c00b9c773441aba9d66e1 Mon Sep 17 00:00:00 2001 From: fabasoad Date: Sat, 7 Oct 2023 22:53:55 +0900 Subject: [PATCH 3/3] Bump gitleaks/gitleaks from 8.16.3 to 8.18.0 --- .pre-commit-config.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index b9fa35f..6c2bccb 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -9,7 +9,7 @@ repos: rev: v1.4.0 hooks: - id: detect-secrets - - repo: https://github.com/zricethezav/gitleaks + - repo: https://github.com/gitleaks/gitleaks rev: v8.18.0 hooks: - id: gitleaks