From 82d1f58ed6c6d9da5c88e246051dcc79a346b033 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 09:14:21 +0000 Subject: [PATCH] Bump actions/checkout from 4.0.0 to 4.1.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.0.0 to 4.1.0. - [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.0.0...v4.1.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... 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 45a03bd..e966509 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.0.0 + - uses: actions/checkout@v4.1.0 - uses: actions/setup-go@v4 with: go-version: 1.19 # The Go version to download (if necessary) and use. diff --git a/.github/workflows/cloc.yml b/.github/workflows/cloc.yml index 325f176..46fbd58 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.0.0 + - uses: actions/checkout@v4.1.0 # Runs djdefi/cloc-action - name: Count Lines of Code (cloc) diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 2f37d7f..d4d886d 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.0.0 + - uses: actions/checkout@v4.1.0 - uses: actions/setup-go@v4 with: go-version: 1.19 # The Go version to download (if necessary) and use. diff --git a/.github/workflows/golangci.yml b/.github/workflows/golangci.yml index 34e0e6e..c17b996 100644 --- a/.github/workflows/golangci.yml +++ b/.github/workflows/golangci.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-go@v4 with: go-version: 1.19 - - uses: actions/checkout@v4.0.0 + - uses: actions/checkout@v4.1.0 - name: golangci-lint uses: golangci/golangci-lint-action@v3 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 318a587..efa790d 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.0.0 + - uses: actions/checkout@v4.1.0 - uses: actions/setup-go@v4 with: go-version: 1.18.1 # 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.0.0 + - uses: actions/checkout@v4.1.0 - uses: actions/download-artifact@v3 with: name: jprovd-Linux diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index daf1b59..5c5d6c7 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.0.0 + - uses: actions/checkout@v4.1.0 - uses: actions/setup-go@v4 with: go-version: 1.18.1 # 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.0.0 + # - uses: actions/checkout@v4.1.0 # - uses: actions/setup-go@v4 # 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.0.0 + - uses: actions/checkout@v4.1.0 - 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 6155089..c334ce4 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.0.0 + - uses: actions/checkout@v4.1.0 - uses: actions/setup-go@v4 with: go-version: 1.19 # The Go version to download (if necessary) and use.