Skip to content

Commit 74d81a4

Browse files
cf-buildpacks-engrobdimsdale
authored andcommitted
Updating github-config
1 parent 36f70f6 commit 74d81a4

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414

1515
- name: Checkout
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v4
1717

1818
- name: Fetch Pull Request Details
1919
id: pull_request

.github/workflows/synchronize-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on:
1414
- ubuntu-22.04
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- uses: micnncim/action-label-syncer@v1
1818
env:
1919
GITHUB_TOKEN: ${{ github.token }}

.github/workflows/test-pull-request.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ jobs:
1717
go-version: stable
1818

1919
- name: Checkout
20-
uses: actions/checkout@v2
21-
22-
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
2323

2424
- name: Run Unit Tests
2525
run: ./scripts/unit.sh
@@ -32,7 +32,7 @@ jobs:
3232
needs: unit
3333
steps:
3434
- name: Checkout
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v4
3636

3737
- name: Set Matrix
3838
id: set-matrix
@@ -56,9 +56,9 @@ jobs:
5656
go-version: stable
5757

5858
- name: Checkout
59-
uses: actions/checkout@v2
60-
61-
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/* || true
59+
uses: actions/checkout@v4
60+
with:
61+
fetch-depth: 0
6262

6363
- name: Run Integration Tests
6464
env:

.github/workflows/update-github-config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Update shared github-config
22

33
on:
44
schedule:
5-
- cron: '*/15 * * * *'
5+
- cron: '10 9 * * *'
66
workflow_dispatch: { }
77

88
jobs:
@@ -12,13 +12,13 @@ jobs:
1212
steps:
1313

1414
- name: Checkout
15-
uses: actions/checkout@v2
15+
uses: actions/checkout@v4
1616
with:
1717
token: ${{ secrets.CF_BOT_GITHUB_TOKEN }}
1818
ref: develop
1919

2020
- name: Checkout github-config
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
with:
2323
repository: cloudfoundry/buildpacks-github-config
2424
path: github-config

0 commit comments

Comments
 (0)