Skip to content

Commit

Permalink
Merge branch 'main' of github.com:chenrui333/github-action-test into …
Browse files Browse the repository at this point in the history
…debug-macos-13-build
  • Loading branch information
chenrui333 committed Dec 9, 2024
2 parents d96369a + 7b35df1 commit 82bd49b
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/brew-regression-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Homebrew
id: set-up-homebrew
# https://github.com/Homebrew/actions/tree/master/setup-homebrew
uses: Homebrew/actions/setup-homebrew@c1d44829f8bbdcaca771828d77d9ee9786d09e1b
uses: Homebrew/actions/setup-homebrew@064c96758610d925cdfa1878c508528f23dc6a58
- run: brew update
- run: brew install -s ${{inputs.formula}} && brew test ${{inputs.formula}}
- run: brew linkage --cached ${{inputs.formula}}
2 changes: 1 addition & 1 deletion .github/workflows/brew-regression.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Set up Homebrew
id: set-up-homebrew
# https://github.com/Homebrew/actions/tree/master/setup-homebrew
uses: Homebrew/actions/setup-homebrew@c1d44829f8bbdcaca771828d77d9ee9786d09e1b
uses: Homebrew/actions/setup-homebrew@064c96758610d925cdfa1878c508528f23dc6a58
- run: brew update
- run: brew install ${{inputs.formula}} && brew test ${{inputs.formula}}
- run: brew linkage --cached ${{inputs.formula}}
2 changes: 1 addition & 1 deletion .github/workflows/credentials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Setup tmate session
uses: mxschmitt/action-tmate@a283f9441d2d96eb62436dc46d7014f5d357ac22 # v3
uses: mxschmitt/action-tmate@e5c7151931ca95bad1c6f4190c730ecf8c7dde48 # v3
- name: Write into file
id: write_file
uses: timheuer/base64-to-file@adaa40c0c581f276132199d4cf60afa07ce60eac # v1.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
password: ${{ secrets.GH_REGISTRY_TOKEN }}

- name: Build and push
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75 # v6
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hurl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
hurl --version
env:
# renovate: datasource=github-releases depName=Orange-OpenSource/hurl
HURL_VERSION: 5.0.1
HURL_VERSION: 6.0.0

- name: Run tests
run: hurl --retry 5 --test --glob "hurl/chenrui.dev/*.hurl"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update && apt-get install unzip

# Install Terraform
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
ENV TERRAFORM_VERSION=1.9.8
ENV TERRAFORM_VERSION=1.10.1
RUN case $(uname -m) in x86_64|amd64) ARCH="amd64" ;; aarch64|arm64|armv7l) ARCH="arm64" ;; esac && \
wget -nv -O terraform.zip https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/terraform_${TERRAFORM_VERSION}_linux_${ARCH}.zip && \
mkdir -p /usr/local/bin/tf/versions/${TERRAFORM_VERSION} && \
Expand Down

0 comments on commit 82bd49b

Please sign in to comment.