Skip to content

Update actions/checkout action to v4 #23

Update actions/checkout action to v4

Update actions/checkout action to v4 #23

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: windows-latest
steps:
-
name: Checkout
uses: actions/checkout@v4
-
name: Choco pack
uses: crazy-max/ghaction-chocolatey@v1
with:
args: pack terragrunt\terragrunt.nuspec
-
name: Choco push
uses: crazy-max/ghaction-chocolatey@v1
env:
SUPER_SECRET: ${{ secrets.API_KEY }}
with:
args: push D:\a\chocolatey-packages\chocolatey-packages\terragrunt.0.23.44.nupkg --apikey "$env:SUPER_SECRET" --source "'https://chocolatey.org/'"