diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f6eb42f..9b9d654 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,7 +21,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 # Dogfood this Action to build its own CLI. - uses: ./ with: diff --git a/.github/workflows/example-matrix.yml b/.github/workflows/example-matrix.yml index 67a688d..2036d08 100644 --- a/.github/workflows/example-matrix.yml +++ b/.github/workflows/example-matrix.yml @@ -12,7 +12,7 @@ jobs: - { runner: ubuntu-latest, os: linux, arch: arm64, env: CGO_ENABLED=0 } - { runner: ubuntu-latest, os: windows, arch: amd64, env: CGO_ENABLED=0 } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Build uses: hashicorp/actions-go-build@main with: diff --git a/.github/workflows/example-matrix.yml.currentbranch.yml b/.github/workflows/example-matrix.yml.currentbranch.yml index a4a7da6..e1e6aa4 100644 --- a/.github/workflows/example-matrix.yml.currentbranch.yml +++ b/.github/workflows/example-matrix.yml.currentbranch.yml @@ -13,7 +13,7 @@ jobs: - { runner: ubuntu-latest, os: linux, arch: arm64, env: CGO_ENABLED=0 } - { runner: ubuntu-latest, os: windows, arch: amd64, env: CGO_ENABLED=0 } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Build uses: ./ with: diff --git a/.github/workflows/example.yml b/.github/workflows/example.yml index 20a911d..32f322b 100644 --- a/.github/workflows/example.yml +++ b/.github/workflows/example.yml @@ -4,7 +4,7 @@ jobs: example: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Build uses: hashicorp/actions-go-build@main with: diff --git a/.github/workflows/example.yml.currentbranch.yml b/.github/workflows/example.yml.currentbranch.yml index bd42197..d3f31e2 100644 --- a/.github/workflows/example.yml.currentbranch.yml +++ b/.github/workflows/example.yml.currentbranch.yml @@ -5,7 +5,7 @@ jobs: example: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Build uses: ./ with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d5a6dc..ffb7a66 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Build CLI Binaries run: make release/zips - name: Create GitHub Release diff --git a/.github/workflows/self-test-suite-verify.yml b/.github/workflows/self-test-suite-verify.yml index 86c4280..2b2a0d6 100644 --- a/.github/workflows/self-test-suite-verify.yml +++ b/.github/workflows/self-test-suite-verify.yml @@ -30,7 +30,7 @@ jobs: - { assert: failure, file: this-file-does-not-exist, when: result file is missing } - { assert: failure, file: corrupt, when: result file is corrupt } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 # generate a random ID; GH doesn't provide a proper job ID (especially for matrix jobs) - name: Generate random ID to distinguish build artifacts run: echo "ARTIFACT_ID=$RANDOM" >> "$GITHUB_ENV" diff --git a/.github/workflows/self-test-suite.yml b/.github/workflows/self-test-suite.yml index b7678e9..8cbbb3c 100644 --- a/.github/workflows/self-test-suite.yml +++ b/.github/workflows/self-test-suite.yml @@ -32,7 +32,7 @@ jobs: - { reproducible: report, want: success } - { reproducible: nope, want: success } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: select OS value run: case "${{ runner.os }}" in macOS) echo "SELECTED_OS=darwin" >> "$GITHUB_ENV" ;; Linux) echo "SELECTED_OS=linux" >> "$GITHUB_ENV" ;; esac - uses: ./self-test @@ -57,7 +57,7 @@ jobs: - { reproducible: report, want: success } - { reproducible: nope, want: success } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: select OS value run: case "${{ runner.os }}" in macOS) echo "SELECTED_OS=darwin" >> "$GITHUB_ENV" ;; Linux) echo "SELECTED_OS=linux" >> "$GITHUB_ENV" ;; esac - uses: ./self-test @@ -91,7 +91,7 @@ jobs: - { reproducible: report, os: darwin, arch: arm64, want: success } - { reproducible: nope, os: darwin, arch: arm64, want: success } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 if: runner.os == 'macOS' - uses: ./self-test if: runner.os == 'macOS' @@ -117,7 +117,7 @@ jobs: - { reproducible: report, want: success } - { reproducible: nope, want: success } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: select OS value run: case "${{ runner.os }}" in macOS) echo "SELECTED_OS=darwin" >> "$GITHUB_ENV" ;; Linux) echo "SELECTED_OS=linux" >> "$GITHUB_ENV" ;; esac - uses: ./self-test @@ -144,7 +144,7 @@ jobs: - { reproducible: report, want: success } - { reproducible: nope, want: success } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: select OS value run: case "${{ runner.os }}" in macOS) echo "SELECTED_OS=darwin" >> "$GITHUB_ENV" ;; Linux) echo "SELECTED_OS=linux" >> "$GITHUB_ENV" ;; esac - uses: ./self-test @@ -170,7 +170,7 @@ jobs: - { reproducible: report, want: failure } - { reproducible: nope, want: failure } steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: select OS value run: case "${{ runner.os }}" in macOS) echo "SELECTED_OS=darwin" >> "$GITHUB_ENV" ;; Linux) echo "SELECTED_OS=linux" >> "$GITHUB_ENV" ;; esac - uses: ./self-test diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e50332c..46a02d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,13 +13,13 @@ jobs: lint: runs-on: ubuntu-latest steps: - - uses: super-linter/super-linter@b4515bd4ad9d0aa4681960e053916ab991bdbe96 # v6.8.0 + - uses: super-linter/super-linter@b92721f792f381cedc002ecdbb9847a15ece5bb8 # v7.1.0 go-tests: runs-on: ubuntu-latest steps: - - uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 - - uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2 + - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + - uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 with: go-version-file: go.mod cache: false