Skip to content

Commit

Permalink
Merge pull request #469 from innogames/dependabot/github_actions/acti…
Browse files Browse the repository at this point in the history
…ons/checkout-4

build(deps): bump actions/checkout from 3 to 4
  • Loading branch information
brainexe authored Sep 8, 2023
2 parents 9a11dcf + e39503e commit 81138aa
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.9.0
- name: Login to GitHub Packages Docker Registry
Expand All @@ -42,7 +42,7 @@ jobs:
check-latest: true
go-version: stable
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Goreportcard
uses: creekorful/goreportcard-action@v1.0
- name: Test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- goarch: "386"
goos: darwin
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: wangyoucao577/go-release-action@v1.39
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
go-version: ${{ matrix.go-version }}
stable: false
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Run tests
run: make test
env:
Expand All @@ -37,7 +37,7 @@ jobs:
with:
go-version: stable
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Build binary
run: make build/slack-bot
- name: Run tests with race
Expand All @@ -55,7 +55,7 @@ jobs:
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
Expand All @@ -65,7 +65,7 @@ jobs:
name: Security
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
Expand All @@ -80,7 +80,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.9.0
- name: Build and push
Expand Down

0 comments on commit 81138aa

Please sign in to comment.