Skip to content

Commit c855934

Browse files
authored
Make the linter happier
1 parent 0ed7807 commit c855934

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

.github/scripts/new_post.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
set -eu -o pipefail
77

8-
98
function slug_from_title_and_date {
109
echo "$POST_DAY-$1" | tr '[:upper:]' '[:lower:]' | tr -s ' ' '-' | tr -s '[:punct:]' '-'
1110
}

.github/workflows/on_call_build_site.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ jobs:
1717
DOCKER_BUILDKIT: 1
1818
COMPOSE_DOCKER_CLI_BUILD: 1
1919
steps:
20-
- uses: actions/checkout@v5
20+
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
2121

2222
- name: Set up Docker Buildx
2323
uses: docker/setup-buildx-action@v3
2424

2525
- name: Login to Docker
26-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
26+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
2727
with:
2828
registry: ghcr.io
2929
username: ${{ github.actor }}

.github/workflows/on_call_staging_test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
tar -xzf _site.tar.gz
2323
2424
- name: Set up Docker Buildx
25-
uses: docker/setup-buildx-action@v3
25+
uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1
2626

2727
- name: Login to Docker
28-
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3
28+
uses: docker/login-action@5e57cd118135c172c3672efd75eb46360885c0ef # v3.6.0
2929
with:
3030
registry: ghcr.io
3131
username: ${{ github.actor }}

.github/workflows/on_pr_lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-latest
2929
steps:
3030
- name: Checkout source code
31-
uses: actions/checkout@v5
31+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
3232

3333
- name: Lint Code Base
3434
continue-on-error: true

.github/workflows/on_push_to_master_test_and_deploy.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,15 @@ jobs:
8888
- uses: actions/checkout@v5
8989

9090
- name: Check for workflow changes
91-
# tj-actions/changed-files v44.5.7
92-
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62
91+
uses: tj-actions/changed-files@24d32ffd492484c1d75e0c0b894501ddb9d30d62 # v47.0.0
9392
id: filter
9493
with:
9594
files: |
9695
.github/workflows/**
9796
9897
# see https://github.com/mcdeck/netlify-cms-oauth-provider-php
9998
- name: Checkout the netlify-cms-oauth-provider-php
100-
uses: actions/checkout@v5
99+
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
101100
with:
102101
repository: mcdeck/netlify-cms-oauth-provider-php
103102
path: netlify-cms-oauth-provider-php

0 commit comments

Comments
 (0)