Skip to content

Commit

Permalink
Run apt-get update before installing deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdrake committed May 14, 2024
1 parent 267159a commit 36f9683
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/goBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- name: Install Dependencies # Some dependencies require this package
if: ${{ inputs.os-dependencies != '' }}
run: |
sudo apt-get update
sudo apt-get install ${{ inputs.os-dependencies }}
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/goLint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:
- name: Install Dependencies # Some dependencies require this package
if: ${{ inputs.os-dependencies != '' }}
run: |
sudo apt-get update
sudo apt-get install ${{ inputs.os-dependencies }}
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/goTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ jobs:
name: Install Dependencies
if: inputs.os-dependencies != ''
run: |
sudo apt-get update
sudo apt-get install ${{ inputs.os-dependencies }}
-
name: Checkout
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- name: Install Dependencies # Some dependencies require this package
if: ${{ inputs.os-dependencies != '' }}
run: |
sudo apt-get update
sudo apt-get install ${{ inputs.os-dependencies }}
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/govulncheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- name: Install Dependencies # Some dependencies require this package
if: ${{ inputs.os-dependencies != '' }}
run: |
sudo apt-get update
sudo apt-get install ${{ inputs.os-dependencies }}
- name: Checkout
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
Expand Down

0 comments on commit 36f9683

Please sign in to comment.