From ac2188a70d5a7e1e545fefa16fa833a9aac521f5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Apr 2024 09:50:06 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.3 to 4.1.4 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.3 to 4.1.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/v4.1.3...v4.1.4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/cloc.yml | 2 +- .github/workflows/cov.yml | 2 +- .github/workflows/golangci.yml | 2 +- .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fcc8bb8..3e5c250 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. diff --git a/.github/workflows/cloc.yml b/.github/workflows/cloc.yml index 4d16cad..1030655 100644 --- a/.github/workflows/cloc.yml +++ b/.github/workflows/cloc.yml @@ -18,7 +18,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 # Runs djdefi/cloc-action - name: Count Lines of Code (cloc) diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 374f0a0..1954abd 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -18,7 +18,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. diff --git a/.github/workflows/golangci.yml b/.github/workflows/golangci.yml index d9e1d2c..e77011f 100644 --- a/.github/workflows/golangci.yml +++ b/.github/workflows/golangci.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: 1.22 - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - name: golangci-lint uses: golangci/golangci-lint-action@v4 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 8f89c70..cb8a9ff 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-20.04, macos-latest] steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. @@ -29,7 +29,7 @@ jobs: [native-build-cli] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - uses: actions/download-artifact@v4 with: name: jprovd-Linux diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85fe9c7..799667a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ubuntu-20.04, macos-latest] steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. @@ -31,7 +31,7 @@ jobs: # MacOS-ARM64-CLI: # runs-on: ubuntu-20.04 # steps: - # - uses: actions/checkout@v4.1.3 + # - uses: actions/checkout@v4.1.4 # - uses: actions/setup-go@v5 # with: # go-version: 1.19 # The Go version to download (if necessary) and use. @@ -54,7 +54,7 @@ jobs: [native-build-cli] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - name: Get the version id: get_version run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dfa61a2..3379eb5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.3 + - uses: actions/checkout@v4.1.4 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use.