Skip to content

Commit

Permalink
Bump actions/checkout from 2 to 3
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v3)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] authored and cyriltovena committed May 2, 2022
1 parent 38b1d3b commit 0795049
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: "grafana/grafana-github-actions"
path: ./actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/issue_commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: "grafana/grafana-github-actions"
path: ./actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/metrics-collector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout Actions
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: "grafana/grafana-github-actions"
path: ./actions
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator-bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
with:
go-version: ${{ matrix.go }}
id: go
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install make
run: sudo apt-get install make
- name: make bundle
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/operator-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
publish-manager:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
publish-bundle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
publish-size-calculator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/operator-scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- uses: engineerd/setup-kind@v0.5.0
with:
version: "v0.11.1"
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install make
run: sudo apt-get install make
- name: Run scorecard
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
with:
go-version: ${{ matrix.go }}
id: go
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Lint
uses: golangci/golangci-lint-action@v3.1.0
with:
Expand All @@ -52,7 +52,7 @@ jobs:
with:
go-version: ${{ matrix.go }}
id: go
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build Manager
working-directory: ./operator
run: |-
Expand All @@ -73,7 +73,7 @@ jobs:
with:
go-version: ${{ matrix.go }}
id: go
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Build Broker
working-directory: ./operator
run: |-
Expand All @@ -94,7 +94,7 @@ jobs:
with:
go-version: ${{ matrix.go }}
id: go
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
working-directory: ./operator
run: go test -coverprofile=profile.cov ./...
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ jobs:
# runs-on: ubuntu-latest
# steps:
# - name: Check out code
# uses: actions/checkout@v1
# uses: actions/checkout@v3
# - name: Build Website
# run: |
# docker run -v ${PWD}/docs/sources:/hugo/content/docs/loki/latest --rm grafana/docs-base:latest /bin/bash -c 'mkdir -p content/docs/grafana/latest/ && touch content/docs/grafana/latest/menu.yaml && make prod'
sync:
runs-on: ubuntu-latest
# needs: test
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- run: git clone --single-branch --no-tags --depth 1 -b master https://grafanabot:${{ secrets.GH_BOT_ACCESS_TOKEN }}@github.com/grafana/website-sync ./.github/actions/website-sync
- name: publish-to-git
uses: ./.github/actions/website-sync
Expand Down

0 comments on commit 0795049

Please sign in to comment.