From 569a9cad709baa83397b392b83215f94a5d8ca99 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 1 Jun 2024 01:42:41 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.4 to 4.1.6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.4 to 4.1.6. - [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/0ad4b8fadaa221de15dcec353f45205ec38ea70b...a5ac7e51b41094c92402da3b24376905380afc29) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/actionlint.yml | 2 +- .github/workflows/build.yml | 4 ++-- .github/workflows/codeql.yml | 2 +- .github/workflows/publishing.yml | 6 +++--- .github/workflows/semver-check.yml | 2 +- .github/workflows/testing-on-issue.yml | 2 +- .github/workflows/testing.yml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 98b3406..94c992a 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -8,7 +8,7 @@ jobs: actionlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: Check workflow files uses: docker://rhysd/actionlint@sha256:5f957b2a08d223e48133e1a914ed046bea12e578fe2f6ae4de47fdbe691a2468 # 1.6.22 diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 94ca651..66e4491 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,7 +12,7 @@ jobs: build: # make sure build/ci work properly runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - run: npm ci - run: npm run all @@ -20,7 +20,7 @@ jobs: if: github.event_name == 'pull_request' runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - name: 'Dependency Review' uses: actions/dependency-review-action@0c155c5e8556a497adf53f2c18edabf945ed8e70 # v4.3.2 diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index a473c12..710dacf 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -41,7 +41,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL diff --git a/.github/workflows/publishing.yml b/.github/workflows/publishing.yml index bf3b061..cf2132e 100644 --- a/.github/workflows/publishing.yml +++ b/.github/workflows/publishing.yml @@ -13,7 +13,7 @@ jobs: build: # make sure build/ci work properly runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - run: npm ci - run: npm run all @@ -21,7 +21,7 @@ jobs: needs: build runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 # execute the action locally for testing if anything breaks - uses: ./ @@ -38,7 +38,7 @@ jobs: runs-on: ubuntu-latest steps: # get code - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 # build it - run: | diff --git a/.github/workflows/semver-check.yml b/.github/workflows/semver-check.yml index 43a2e5d..821536c 100644 --- a/.github/workflows/semver-check.yml +++ b/.github/workflows/semver-check.yml @@ -9,7 +9,7 @@ jobs: semver: runs-on: ubuntu-latest steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 with: fetch-depth: 0 # needed to get all tags diff --git a/.github/workflows/testing-on-issue.yml b/.github/workflows/testing-on-issue.yml index 0dbcdb6..03519b6 100644 --- a/.github/workflows/testing-on-issue.yml +++ b/.github/workflows/testing-on-issue.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest #if: github.ref == 'refs/heads/main' # don't run on PRs or branches steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v3.3.0 # this will checkout the compiled Typescript + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3.3.0 # this will checkout the compiled Typescript #- uses: hmarr/debug-action@v2 diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index c5b3f81..6c71596 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest #if: github.ref == 'refs/heads/main' # don't run on PRs steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 - run: npm ci - run: npm run all @@ -23,7 +23,7 @@ jobs: runs-on: ubuntu-latest #if: github.ref == 'refs/heads/main' # don't run on PRs or branches steps: - - uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v3.3.0 # this will checkout the compiled Typescript + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v3.3.0 # this will checkout the compiled Typescript #- uses: hmarr/debug-action@v2