Skip to content

Commit

Permalink
#112 Bump and lock all github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
danielemery committed Sep 26, 2024
1 parent 7d6c3f4 commit 5d235c8
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0

- name: Configure node
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}

Expand All @@ -36,6 +36,6 @@ jobs:
run: npm run test:ci

- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4.5.0
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
26 changes: 13 additions & 13 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0

- name: Configure node
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}

Expand All @@ -39,7 +39,7 @@ jobs:
run: npm run build

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: build-artifacts
path: |
Expand All @@ -50,7 +50,7 @@ jobs:
package*.json
- name: Upload helm chart
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: helm-chart
path: helm
Expand All @@ -60,7 +60,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: nowsprinting/check-version-format-action@v3
- uses: nowsprinting/check-version-format-action@v4.0.3
id: version
with:
prefix: 'v'
Expand All @@ -71,22 +71,22 @@ jobs:
name: build-artifacts

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

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
uses: docker/metadata-action@v5.5.1
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
flavor: |
latest=${{ steps.version.outputs.is_stable == 'true' && 'true' || 'false' }}
- name: Build and push Docker image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6.7.0
with:
context: .
push: true
Expand All @@ -102,7 +102,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: nowsprinting/check-version-format-action@v3
- uses: nowsprinting/check-version-format-action@v4.0.3
id: version
with:
prefix: 'v'
Expand All @@ -114,7 +114,7 @@ jobs:
path: helm

- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
uses: aws-actions/configure-aws-credentials@v4.0.2
with:
aws-access-key-id: ${{ secrets.HELM_DEPLOY_ACCESS_KEY }}
aws-secret-access-key: ${{ secrets.HELM_DEPLOY_SECRET }}
Expand All @@ -135,21 +135,21 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: nowsprinting/check-version-format-action@v3
- uses: nowsprinting/check-version-format-action@v4.0.3
id: version
with:
prefix: 'v'

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0

- name: Download build artifacts with sourcemaps
uses: actions/[email protected]
with:
name: build-artifacts

- name: Create Sentry release
uses: getsentry/action-release@v1
uses: getsentry/action-release@v1.7.0
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ vars.SENTRY_ORG }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/validate-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0

- name: Configure node
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}

Expand All @@ -30,7 +30,7 @@ jobs:
run: npm run build

- name: Upload build artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.4.0
with:
name: build-artifacts
path: |
Expand All @@ -44,10 +44,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.2.0

- name: Configure node
uses: actions/setup-node@v3
uses: actions/setup-node@v4.0.4
with:
node-version: ${{ env.NODE_VERSION }}

Expand Down

0 comments on commit 5d235c8

Please sign in to comment.