Skip to content

Commit

Permalink
fix(deps): don't pin github action to sha
Browse files Browse the repository at this point in the history
This probably needs to be coupled with a renovate config.
Will look at this later.

Closes: #257
  • Loading branch information
jbergstroem committed Oct 21, 2023
1 parent b978f05 commit 8d9af86
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Update Docker Hub
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: Run shell script
run: sh/generate-dockerhub-readme.sh
- name: Update Docker Hub readme and description
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Validate renovate config
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: validate
uses: rinchsan/[email protected]
with:
Expand All @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-22.04
name: Shellcheck
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: Install Shellcheck
env:
version: "0.9.0"
Expand All @@ -29,15 +29,15 @@ jobs:
runs-on: ubuntu-22.04
name: Hadolint
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- uses: jbergstroem/[email protected]
with:
error_level: 2
actionlint:
name: Actionlint
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: Install Actionlint
env:
version: "1.6.25"
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-22.04
name: Prettier
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- uses: actions/[email protected]
with:
node-version: "18.11.0"
Expand All @@ -62,7 +62,7 @@ jobs:
name: Shfmt
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: Install shfmt
env:
version: "3.7.0"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
tag: ${{ steps.extract.outputs.tag }}
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
with:
# get all tags
fetch-depth: 0
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
image: jbergstroem/mariadb-alpine
ref_url: ${{ github.api_url }}/repos/${{ github.repository }}/git/refs
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: E2E Tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: Assign version for usage
id: assign
run: echo IMAGE_VERSION="$(git rev-parse --short HEAD)" >> "$GITHUB_ENV"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: Create Todo
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- uses: actions/checkout@v4
- name: TODO to Issue
uses: alstr/[email protected]
with:
Expand Down

0 comments on commit 8d9af86

Please sign in to comment.