From 6628c764c3448f449c5707566b68a47ba76d8de1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 16 Mar 2024 01:58:53 +0000 Subject: [PATCH 1/2] Bump actions/checkout from 4.1.1 to 4.1.2 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.1 to 4.1.2. - [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.1.1...v4.1.2) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/checks.yml | 4 ++-- .github/workflows/create-release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 6197357..c96a426 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -11,7 +11,7 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 - uses: actions/setup-node@v4.0.2 with: node-version: "19.0.0" @@ -22,7 +22,7 @@ jobs: format-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 - uses: actions/setup-node@v4.0.2 with: node-version: "19.0.0" diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index 530d8bd..d285ee9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -10,7 +10,7 @@ jobs: name: Create GitHub Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.1 + - uses: actions/checkout@v4.1.2 - name: Create release run: >- latest_tag="$(git describe --tags --abbrev=0)"; From 0f9aae8019bd2a703a61f9de8a0a16087be37304 Mon Sep 17 00:00:00 2001 From: kg8m Date: Sat, 16 Mar 2024 19:25:17 +0900 Subject: [PATCH 2/2] =?UTF-8?q?Don=E2=80=99t=20specify=20minor/patch=20ver?= =?UTF-8?q?sions=20for=20GitHub=20Actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Always use the latest version in the same major version. --- .github/workflows/checks.yml | 8 ++++---- .github/workflows/create-release.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index c96a426..96ab152 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -11,8 +11,8 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.2 - - uses: actions/setup-node@v4.0.2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: "19.0.0" cache: npm @@ -22,8 +22,8 @@ jobs: format-check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.2 - - uses: actions/setup-node@v4.0.2 + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 with: node-version: "19.0.0" cache: npm diff --git a/.github/workflows/create-release.yml b/.github/workflows/create-release.yml index d285ee9..b91d2a9 100644 --- a/.github/workflows/create-release.yml +++ b/.github/workflows/create-release.yml @@ -10,7 +10,7 @@ jobs: name: Create GitHub Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4 - name: Create release run: >- latest_tag="$(git describe --tags --abbrev=0)";