From 06caaaf0910ed7524fdc7321f14d367e7344e3d0 Mon Sep 17 00:00:00 2001 From: Vincent Boutour Date: Sat, 25 Jun 2022 17:22:43 +0200 Subject: [PATCH] ci: Bumping some github action manually Signed-off-by: Vincent Boutour --- .github/workflows/branch_clean.yaml | 2 +- .github/workflows/build.yaml | 18 +++++++++--------- .github/workflows/codeql-analysis.yaml | 6 +++--- .github/workflows/herodote.yaml | 4 ++-- .github/workflows/release.yaml | 6 +++--- 5 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.github/workflows/branch_clean.yaml b/.github/workflows/branch_clean.yaml index d1a2bec3..7408e7a7 100644 --- a/.github/workflows/branch_clean.yaml +++ b/.github/workflows/branch_clean.yaml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ab5401c8..63afedda 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -22,7 +22,7 @@ on: - main env: - SCRIPTS_NO_INTERACTIVE: 'true' + SCRIPTS_NO_INTERACTIVE: "true" defaults: run: @@ -34,26 +34,26 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Golang uses: actions/setup-go@v3 with: - go-version: '^1.18' + go-version: "^1.18" - name: golangci-lint - uses: golangci/golangci-lint-action@v2 + uses: golangci/golangci-lint-action@v3 - name: Build run: | make git --no-pager diff -- ':(exclude)go.sum' && git diff --quiet -- ':(exclude)go.sum' - name: Codecov - uses: codecov/codecov-action@v1 + uses: codecov/codecov-action@v3 sonarcloud: name: SonarCloud runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: fetch-depth: 0 - name: SonarCloud @@ -68,11 +68,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Golang uses: actions/setup-go@v3 with: - go-version: '^1.18' + go-version: "^1.18" - name: Build run: | curl --disable --silent --show-error --location --max-time 30 "https://raw.githubusercontent.com/ViBiOh/scripts/main/bootstrap" | bash -s -- "-c" "release" @@ -104,7 +104,7 @@ jobs: needs: package steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Publish env: DOCKER_USER: ${{ secrets.DOCKER_USER }} diff --git a/.github/workflows/codeql-analysis.yaml b/.github/workflows/codeql-analysis.yaml index 83df1a1f..d181b748 100644 --- a/.github/workflows/codeql-analysis.yaml +++ b/.github/workflows/codeql-analysis.yaml @@ -21,7 +21,7 @@ on: branches: - main schedule: - - cron: '0 0 * * 6' + - cron: "0 0 * * 6" jobs: analyze: @@ -34,7 +34,7 @@ jobs: - go steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup CodeQL uses: github/codeql-action/init@v2 with: @@ -42,7 +42,7 @@ jobs: - name: Setup Golang uses: actions/setup-go@v3 with: - go-version: '^1.18' + go-version: "^1.18" - name: Build run: make build - name: CodeQL diff --git a/.github/workflows/herodote.yaml b/.github/workflows/herodote.yaml index b48a9e3b..90d73f56 100644 --- a/.github/workflows/herodote.yaml +++ b/.github/workflows/herodote.yaml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha }} fetch-depth: 0 @@ -36,4 +36,4 @@ jobs: HERODOTE_SECRET: ${{ secrets.HERODOTE_SECRET }} GIT_HOST: github.com GIT_REPOSITORY: ${{ github.repository }} - SCRIPTS_NO_INTERACTIVE: '1' + SCRIPTS_NO_INTERACTIVE: "1" diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 916936e8..7099955d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,7 +19,7 @@ on: - released env: - SCRIPTS_NO_INTERACTIVE: 'true' + SCRIPTS_NO_INTERACTIVE: "true" defaults: run: @@ -31,11 +31,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Golang uses: actions/setup-go@v3 with: - go-version: '^1.18' + go-version: "^1.18" - name: Build run: make init - name: Assets