Skip to content

Commit

Permalink
update checkout action
Browse files Browse the repository at this point in the history
  • Loading branch information
SollyzDev committed Sep 27, 2024
1 parent 33d2903 commit a817184
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,16 @@ env:
jobs:
python:
runs-on: ubuntu-latest
outputs:
forwarder: ${{ steps.forwarder-package.outputs.artifact-id }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: chartboost/ruff-action@v1
- uses: chartboost/ruff-action@v1
with:
args: "format --check"
- uses: actions/upload-artifact@v4
id: forwarder-package
with:
name: forwarder.zip
path: src/*
Expand All @@ -24,7 +27,7 @@ jobs:
needs:
- python
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- run: wget https://github.com/mikefarah/yq/releases/download/v$YQ_VERSION/yq_linux_amd64.tar.gz -O - | tar xz && mv yq_linux_amd64 /usr/local/bin/yq
- run: |-
mkdir build
Expand All @@ -43,7 +46,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Terraform Format
id: fmt
run: terraform fmt -recursive -check

0 comments on commit a817184

Please sign in to comment.