Skip to content

Commit ab2ae16

Browse files
chore(github-actions): update github actions (#61)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 7dfd494 commit ab2ae16

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
permissions:
1414
contents: read
1515
steps:
16-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
16+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1717
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
1818
with:
1919
node-version-file: package.json
@@ -32,7 +32,7 @@ jobs:
3232
env:
3333
RUNNER_DEBUG: 1
3434
steps:
35-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
35+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3636
- uses: ./
3737
with:
3838
version: 'latest'
@@ -56,7 +56,7 @@ jobs:
5656
contents: read
5757
steps:
5858
- name: Checkout Code
59-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
59+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
6060
with:
6161
fetch-depth: 0
6262

@@ -88,13 +88,13 @@ jobs:
8888
permissions:
8989
contents: write
9090
steps:
91-
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
91+
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
9292
id: app-token
9393
with:
9494
app-id: 1248576
9595
private-key: ${{ secrets.AUTOMATION_APP_PRIVATE_KEY }}
9696
- name: Checkout
97-
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
97+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
9898
with:
9999
fetch-depth: 0
100100
- name: Setup Node.js

.github/workflows/pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
!contains(github.event.pull_request.labels.*.name, 'chore') &&
2222
!contains(github.event.pull_request.labels.*.name, '🛠️ dependencies')
2323
steps:
24-
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
24+
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
2525
id: app-token
2626
with:
2727
app-id: 1248576
@@ -48,7 +48,7 @@ jobs:
4848
name: check title prefix
4949
runs-on: ubuntu-latest
5050
steps:
51-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
51+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
5252
- name: check
5353
run: |
5454
PR_TITLE_PREFIX=$(echo "$PR_TITLE" | cut -d':' -f1)

.github/workflows/renovate-custom-hooks.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515
runs-on: ubuntu-latest
1616
if: github.repository_owner == 'jkroepke' && github.actor == 'renovate[bot]'
1717
steps:
18-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
18+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1919
with:
2020
fetch-depth: 0
2121

2222
# Using a GitHub App token, because GitHub Actions doesn't run on commits from github-actions bot
2323
# Used App:
2424
# https://github.com/organizations/prometheus-community/settings/apps/helm-charts-renovate-helper.
2525
# Ref: https://github.com/prometheus-community/helm-charts/issues/5213.
26-
- uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
26+
- uses: actions/create-github-app-token@a8d616148505b5069dccd32f177bb87d7f39123b # v2.1.1
2727
id: app-token
2828
with:
2929
app-id: 1248576

.github/workflows/update-major-tag.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
if: github.repository_owner == 'jkroepke'
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
1616
- run: |
1717
TAG="${{ github.ref_name }}"
1818
if [[ "$TAG" =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then

0 commit comments

Comments
 (0)