Skip to content

Commit

Permalink
ci: pin third-party actions to tags (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mogyuchi authored Dec 14, 2023
1 parent 0bb6e39 commit 948f25e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.1
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.0
with:
node-version: 20
cache: npm
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.1

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
uses: docker/setup-buildx-action@v3.0.0

- name: Log in to the Container registry
uses: docker/login-action@v3
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Docker Metadata
uses: docker/metadata-action@v4
uses: docker/metadata-action@v5.3.0
id: metadata
with:
images: ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
Expand Down

0 comments on commit 948f25e

Please sign in to comment.